< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/Location.java

Print this page
rev 17275 : 8181417: Code cleanups in com.sun.jdi

*** 23,34 **** * questions. */ package com.sun.jdi; - import java.util.List; - /** * A point within the executing code of the target VM. * Locations are used to identify the current position of * a suspended thread (analogous to an instruction pointer or * program counter register in native programs). They are also used --- 23,32 ----
*** 126,136 **** * @throws AbsentInformationException if the source name is not * known */ String sourceName() throws AbsentInformationException; - /** * Gets an identifing name for the source corresponding to * this location. Interpretation of this string is the * responsibility of the source repository mechanism. * <P> --- 124,133 ----
*** 152,163 **** * @throws AbsentInformationException if the source name is not * known * * @since 1.4 */ ! String sourceName(String stratum) ! throws AbsentInformationException; /** * Gets the path to the source corresponding to this * location. * <P> --- 149,159 ---- * @throws AbsentInformationException if the source name is not * known * * @since 1.4 */ ! String sourceName(String stratum) throws AbsentInformationException; /** * Gets the path to the source corresponding to this * location. * <P>
*** 171,181 **** * @throws AbsentInformationException if the source name is not * known */ String sourcePath() throws AbsentInformationException; - /** * Gets the path to the source corresponding to this * location. Interpretation of this string is the * responsibility of the source repository mechanism. * <P> --- 167,176 ----
*** 204,215 **** * @throws AbsentInformationException if the source name is not * known * * @since 1.4 */ ! String sourcePath(String stratum) ! throws AbsentInformationException; /** * Gets the line number of this Location. * <P> * This method is equivalent to --- 199,209 ---- * @throws AbsentInformationException if the source name is not * known * * @since 1.4 */ ! String sourcePath(String stratum) throws AbsentInformationException; /** * Gets the line number of this Location. * <P> * This method is equivalent to
< prev index next >