blob: 19a4355a976bc2c71a336a125a70b2b4621e57cd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.sun.jdi;
public interface Location extends Mirror , Comparable {
public long codeIndex();
public ReferenceType declaringType();
public boolean equals(Object arg1);
public int hashCode();
public int lineNumber();
public int lineNumber(String stratum);
public Method method();
public String sourceName() throws AbsentInformationException;
public String sourceName(String stratum) throws AbsentInformationException;
public String sourcePath() throws AbsentInformationException;
public String sourcePath(String stratum) throws AbsentInformationException;
}