Trait

org.scaladebugger.api.profiles.traits.info

FrameInfo

Related Doc: package info

Permalink

trait FrameInfo extends CommonInfo

Represents the interface for frame-based interaction.

Linear Supertypes
CommonInfo, JavaInfo, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FrameInfo
  2. CommonInfo
  3. JavaInfo
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def allVariables: Seq[VariableInfo]

    Permalink

    Retrieves all variables in this frame.

    Retrieves all variables in this frame.

    returns

    The collection of variables as their profile equivalents

  2. abstract def argumentLocalVariables: Seq[IndexedVariableInfo]

    Permalink

    Retrieves all variables that represent arguments in this frame.

    Retrieves all variables that represent arguments in this frame.

    returns

    The collection of variables as their profile equivalents

  3. abstract def argumentValues: Seq[ValueInfo]

    Permalink

    Retrieves the values of the arguments in this frame.

    Retrieves the values of the arguments in this frame. As indicated by the JDI spec, this can return values when no variable information is present.

    returns

    The collection of argument values in order as provided to the frame

  4. abstract def currentThread: ThreadInfo

    Permalink

    Retrieves the thread associated with this frame.

    Retrieves the thread associated with this frame.

    returns

    The profile of the thread

  5. abstract def fieldVariables: Seq[FieldVariableInfo]

    Permalink

    Retrieves all variables that represent field variables in this frame.

    Retrieves all variables that represent field variables in this frame.

    returns

    The collection of variables as their profile equivalents

  6. abstract def index: Int

    Permalink

    Returns the index of this frame relative to the frame stack.

    Returns the index of this frame relative to the frame stack.

    returns

    The index with 0 being the top frame

  7. abstract def indexedAllVariables: Seq[VariableInfo]

    Permalink

    Retrieves all variables in this frame with their offset index information.

    Retrieves all variables in this frame with their offset index information.

    returns

    The collection of variables as their profile equivalents

  8. abstract def indexedArgumentLocalVariables: Seq[IndexedVariableInfo]

    Permalink

    Retrieves all variables that represent arguments in this frame with their offset index information.

    Retrieves all variables that represent arguments in this frame with their offset index information.

    returns

    The collection of variables as their profile equivalents

  9. abstract def indexedFieldVariables: Seq[FieldVariableInfo]

    Permalink

    Retrieves all variables that represent field variables in this frame with their offset index information.

    Retrieves all variables that represent field variables in this frame with their offset index information.

    returns

    The collection of variables as their profile equivalents

  10. abstract def indexedLocalVariables: Seq[IndexedVariableInfo]

    Permalink

    Retrieves all variables that represent local variables in this frame with their offset index information.

    Retrieves all variables that represent local variables in this frame with their offset index information.

    returns

    The collection of variables as their profile equivalents

  11. abstract def indexedNonArgumentLocalVariables: Seq[IndexedVariableInfo]

    Permalink

    Retrieves all variables that do not represent arguments in this frame with their offset index information.

    Retrieves all variables that do not represent arguments in this frame with their offset index information.

    returns

    The collection of variables as their profile equivalents

  12. abstract def indexedVariableOption(name: String): Option[VariableInfo]

    Permalink

    Retrieves the variable with the specified name from the frame with offset index information.

    Retrieves the variable with the specified name from the frame with offset index information.

    name

    The name of the variable to retrieve

    returns

    Some profile of the variable, or None if it doesn't exist

  13. abstract def isJavaInfo: Boolean

    Permalink

    Returns whether or not this info profile represents the low-level Java implementation.

    Returns whether or not this info profile represents the low-level Java implementation.

    returns

    If true, this profile represents the low-level Java information, otherwise this profile represents something higher-level like Scala, Jython, or JRuby

    Definition Classes
    JavaInfo
  14. abstract def localVariables: Seq[IndexedVariableInfo]

    Permalink

    Retrieves all variables that represent local variables in this frame.

    Retrieves all variables that represent local variables in this frame.

    returns

    The collection of variables as their profile equivalents

  15. abstract def location: LocationInfo

    Permalink

    Retrieves the location associated with this frame.

    Retrieves the location associated with this frame.

    returns

    The profile of the location

  16. abstract def nonArgumentLocalVariables: Seq[IndexedVariableInfo]

    Permalink

    Retrieves all variables that do not represent arguments in this frame.

    Retrieves all variables that do not represent arguments in this frame.

    returns

    The collection of variables as their profile equivalents

  17. abstract def scalaVirtualMachine: ScalaVirtualMachine

    Permalink

    Returns the Scala virtual machine containing this instance.

    Returns the Scala virtual machine containing this instance.

    returns

    The Scala virtual machine instance

    Definition Classes
    CommonInfo
  18. abstract def thisObjectOption: Option[ObjectInfo]

    Permalink

    Retrieves the object representing 'this' in the current frame scope.

    Retrieves the object representing 'this' in the current frame scope.

    returns

    Some profile of this object, or None if not available

  19. abstract def toJavaInfo: FrameInfo

    Permalink

    Converts the current profile instance to a representation of low-level Java instead of a higher-level abstraction.

    Converts the current profile instance to a representation of low-level Java instead of a higher-level abstraction.

    returns

    The profile instance providing an implementation corresponding to Java

    Definition Classes
    FrameInfoCommonInfoJavaInfo
  20. abstract def toJdiInstance: StackFrame

    Permalink

    Returns the JDI representation this profile instance wraps.

    Returns the JDI representation this profile instance wraps.

    returns

    The JDI instance

    Definition Classes
    FrameInfoCommonInfo
  21. abstract def variableOption(name: String): Option[VariableInfo]

    Permalink

    Retrieves the variable with the specified name from the frame.

    Retrieves the variable with the specified name from the frame.

    name

    The name of the variable to retrieve

    returns

    Some profile of the variable, or None if it doesn't exist

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hasIndex: Boolean

    Permalink

    Returns whether or not this frame was provided with its index.

    Returns whether or not this frame was provided with its index.

    returns

    True if an index exists, otherwise false

  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. def indexedVariable(name: String): VariableInfo

    Permalink

    Retrieves the variable with the specified name from the frame with offset index information.

    Retrieves the variable with the specified name from the frame with offset index information.

    name

    The name of the variable to retrieve

    returns

    Profile of the variable or throws an exception

    Annotations
    @throws( ... )
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. def thisObject: ObjectInfo

    Permalink

    Retrieves the object representing 'this' in the current frame scope.

    Retrieves the object representing 'this' in the current frame scope.

    returns

    The profile of this object

    Annotations
    @throws( ... )
  19. def toPrettyString: String

    Permalink

    Returns a string presenting a better human-readable description of the JDI instance.

    Returns a string presenting a better human-readable description of the JDI instance.

    returns

    The human-readable description

    Definition Classes
    FrameInfoCommonInfo
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. def tryAllVariables: Try[Seq[VariableInfo]]

    Permalink

    Retrieves all variables in this frame.

    Retrieves all variables in this frame.

    returns

    Success containing the collection of variables as their profile equivalents, otherwise a failure

  22. def tryArgumentLocalVariables: Try[Seq[IndexedVariableInfo]]

    Permalink

    Retrieves all variables that represent arguments in this frame.

    Retrieves all variables that represent arguments in this frame.

    returns

    Success containing the collection of variables as their profile equivalents, otherwise a failure

  23. def tryArgumentValues: Try[Seq[ValueInfo]]

    Permalink

    Retrieves the values of the arguments in this frame.

    Retrieves the values of the arguments in this frame. As indicated by the JDI spec, this can return values when no variable information is present.

    returns

    Success containing the collection of argument values in order as provided to the frame, otherwise a failure

  24. def tryCurrentThread: Try[ThreadInfo]

    Permalink

    Retrieves the thread associated with this frame.

    Retrieves the thread associated with this frame.

    returns

    Success containing the profile of the thread, otherwise a failure

  25. def tryFieldVariables: Try[Seq[FieldVariableInfo]]

    Permalink

    Retrieves all variables that represent field variables in this frame.

    Retrieves all variables that represent field variables in this frame.

    returns

    Success containing the collection of variables as their profile equivalents, otherwise a failure

  26. def tryIndexedAllVariables: Try[Seq[VariableInfo]]

    Permalink

    Retrieves all variables in this frame with their offset index information.

    Retrieves all variables in this frame with their offset index information.

    returns

    Success containing the collection of variables as their profile equivalents, otherwise a failure

  27. def tryIndexedArgumentLocalVariables: Try[Seq[IndexedVariableInfo]]

    Permalink

    Retrieves all variables that represent arguments in this frame with their offset index information.

    Retrieves all variables that represent arguments in this frame with their offset index information.

    returns

    Success containing the collection of variables as their profile equivalents, otherwise a failure

  28. def tryIndexedFieldVariables: Try[Seq[FieldVariableInfo]]

    Permalink

    Retrieves all variables that represent field variables in this frame with their offset index information.

    Retrieves all variables that represent field variables in this frame with their offset index information.

    returns

    Success containing the collection of variables as their profile equivalents, otherwise a failure

  29. def tryIndexedLocalVariables: Try[Seq[IndexedVariableInfo]]

    Permalink

    Retrieves all variables that represent local variables in this frame with their offset index information.

    Retrieves all variables that represent local variables in this frame with their offset index information.

    returns

    Success containing the collection of variables as their profile equivalents, otherwise a failure

  30. def tryIndexedNonArgumentLocalVariables: Try[Seq[IndexedVariableInfo]]

    Permalink

    Retrieves all variables that do not represent arguments in this frame with their offset index information.

    Retrieves all variables that do not represent arguments in this frame with their offset index information.

    returns

    Success containing the collection of variables as their profile equivalents, otherwise a failure

  31. def tryIndexedVariable(name: String): Try[VariableInfo]

    Permalink

    Retrieves the variable with the specified name from the frame with offset index information.

    Retrieves the variable with the specified name from the frame with offset index information.

    name

    The name of the variable to retrieve

    returns

    Success containing profile of the variable if found, otherwise a failure

  32. def tryLocalVariables: Try[Seq[IndexedVariableInfo]]

    Permalink

    Retrieves all variables that represent local variables in this frame.

    Retrieves all variables that represent local variables in this frame.

    returns

    Success containing the collection of variables as their profile equivalents, otherwise a failure

  33. def tryLocation: Try[LocationInfo]

    Permalink

    Retrieves the location associated with this frame.

    Retrieves the location associated with this frame.

    returns

    Success containing the profile of the location, otherwise a failure

  34. def tryNonArgumentLocalVariables: Try[Seq[IndexedVariableInfo]]

    Permalink

    Retrieves all variables that do not represent arguments in this frame.

    Retrieves all variables that do not represent arguments in this frame.

    returns

    Success containing the collection of variables as their profile equivalents, otherwise a failure

  35. def tryThisObject: Try[ObjectInfo]

    Permalink

    Retrieves the object representing 'this' in the current frame scope.

    Retrieves the object representing 'this' in the current frame scope.

    returns

    Success containing the profile of this object, otherwise a failure

  36. def tryVariable(name: String): Try[VariableInfo]

    Permalink

    Retrieves the variable with the specified name from the frame.

    Retrieves the variable with the specified name from the frame.

    name

    The name of the variable to retrieve

    returns

    Success containing profile of the variable if found, otherwise a failure

  37. def variable(name: String): VariableInfo

    Permalink

    Retrieves the variable with the specified name from the frame.

    Retrieves the variable with the specified name from the frame.

    name

    The name of the variable to retrieve

    returns

    Profile of the variable or throws an exception

    Annotations
    @throws( ... )
  38. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CommonInfo

Inherited from JavaInfo

Inherited from AnyRef

Inherited from Any

Ungrouped