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 Debugging 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
 java.lang.String Location.sourceName()
          Gets an identifing name for the source corresponding to this location.
 java.util.List Method.allLineLocations()
          Returns the beginning Location objects for each executable source line in this method.
 java.util.List Method.locationsOfLine(int lineNumber)
          Returns a list containing each Location that maps to the given line.
 java.util.List Method.variables()
          Returns a list containing each LocalVariable declared in this method.
 java.util.List Method.variablesByName(java.lang.String name)
          Returns a list containing each LocalVariable of a given name in this method.
 java.util.List Method.arguments()
          Returns a list containing each LocalVariable that is declared as an argument of this method.
 java.util.List StackFrame.visibleVariables()
          Returns a list containing each LocalVariable that can be accessed from this frame's location.
 LocalVariable StackFrame.visibleVariableByName(java.lang.String name)
          Finds a LocalVariable that matches the given name and is visible at the current frame location.
 java.lang.String ReferenceType.sourceName()
          Gets an identifing name for the source corresponding to the declaration of this type.
 java.util.List ReferenceType.allLineLocations()
          Returns the Location objects for each executable source line in this reference type.
 java.util.List ReferenceType.locationsOfLine(int lineNumber)
          Returns a List filled with all Location objects that map to the given line number.
 


Java Debug Interface