Spec-Zone .ru
спецификации, руководства, описания, API
Java Debug Interface

Uses of Class
com.sun.jdi.AbsentInformationException

Packages that use AbsentInformationException
com.sun.jdi This is the core package of the Java Debug Interface (JDI), it defines mirrors for values, types, and the target VirtualMachine itself - as well bootstrapping facilities. 
 

Uses of AbsentInformationException in com.sun.jdi
 

Methods in com.sun.jdi that throw AbsentInformationException
 String Location.sourceName()
          Gets an identifing name for the source corresponding to this location.
 String Location.sourceName(String stratum)
          Gets an identifing name for the source corresponding to this location.
 String Location.sourcePath()
          Gets the path to the source corresponding to this location.
 String Location.sourcePath(String stratum)
          Gets the path to the source corresponding to this location.
 List StackFrame.visibleVariables()
          Returns a list containing each LocalVariable that can be accessed from this frame's location.
 LocalVariable StackFrame.visibleVariableByName(String name)
          Finds a LocalVariable that matches the given name and is visible at the current frame location.
 List Method.allLineLocations()
          Returns a list containing a Location object for each executable source line in this method.
 List Method.allLineLocations(String stratum, String sourceName)
          Returns a list containing a Location object for each executable source line in this method.
 List Method.locationsOfLine(int lineNumber)
          Returns a List containing all Location objects that map to the given line number.
 List Method.locationsOfLine(String stratum, String sourceName, int lineNumber)
          Returns a List containing all Location objects that map to the given line number and source name.
 List Method.variables()
          Returns a list containing each LocalVariable declared in this method.
 List Method.variablesByName(String name)
          Returns a list containing each LocalVariable of a given name in this method.
 List Method.arguments()
          Returns a list containing each LocalVariable that is declared as an argument of this method.
 String ReferenceType.sourceName()
          Gets an identifying name for the source corresponding to the declaration of this type.
 List ReferenceType.sourceNames(String stratum)
          Gets the identifying names for all the source corresponding to the declaration of this type.
 List ReferenceType.sourcePaths(String stratum)
          Gets the paths to the source corresponding to the declaration of this type.
 String ReferenceType.sourceDebugExtension()
          Get the source debug extension of this type.
 List ReferenceType.allLineLocations()
          Returns a list containing a Location object for each executable source line in this reference type.
 List ReferenceType.allLineLocations(String stratum, String sourceName)
          Returns a list containing a Location object for each executable source line in this reference type.
 List ReferenceType.locationsOfLine(int lineNumber)
          Returns a List containing all Location objects that map to the given line number.
 List ReferenceType.locationsOfLine(String stratum, String sourceName, int lineNumber)
          Returns a List containing all Location objects that map to the given line number.
 


Java Debug Interface