org.scaladebugger.api.profiles.traits.info

LocationInfo

trait LocationInfo extends CommonInfo

Represents the interface for location-based interaction.

Linear Supertypes
CommonInfo, JavaInfo, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LocationInfo
  2. CommonInfo
  3. JavaInfo
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def codeIndex: Long

    Retrieves the code position within the location's method.

    Retrieves the code position within the location's method.

    returns

    The code position, or -1 if not available

  2. abstract def declaringType: ReferenceTypeInfo

    Retrieves the reference type information for the type containing this location.

    Retrieves the reference type information for the type containing this location.

    returns

    The reference type information

  3. abstract def isJavaInfo: Boolean

    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
  4. abstract def lineNumber: Int

    Retrieves the line number associated with the location.

    Retrieves the line number associated with the location.

    returns

    The line number, or -1 if not available

  5. abstract def method: MethodInfo

    Retrieves the method information for the method containing this location.

    Retrieves the method information for the method containing this location.

    returns

    The method information

  6. abstract def scalaVirtualMachine: ScalaVirtualMachine

    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
  7. abstract def sourceName: String

    Retrieves the identifying name for the source corresponding to this location.

    Retrieves the identifying name for the source corresponding to this location.

    returns

    The identifying name

  8. abstract def sourcePath: String

    Retrieves the path to the source corresponding to this location.

    Retrieves the path to the source corresponding to this location.

    returns

    The source path

  9. abstract def toJavaInfo: LocationInfo

    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
    LocationInfoCommonInfoJavaInfo
  10. abstract def toJdiInstance: Location

    Returns the JDI representation this profile instance wraps.

    Returns the JDI representation this profile instance wraps.

    returns

    The JDI instance

    Definition Classes
    LocationInfoCommonInfo

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def codeIndexOption: Option[Long]

    Retrieves the code position within the location's method.

    Retrieves the code position within the location's method.

    returns

    Some code position, or None if not available

  9. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. def lineNumberOption: Option[Int]

    Retrieves the line number associated with the location.

    Retrieves the line number associated with the location.

    returns

    Some line number, or None if not available

  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

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

    Definition Classes
    AnyRef
  20. def toPrettyString: String

    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
    LocationInfoCommonInfo
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. def trySourceName: Try[String]

    Retrieves the identifying name for the source corresponding to this location.

    Retrieves the identifying name for the source corresponding to this location.

    returns

    Success containing the identifying name, otherwise a failure

  23. def trySourcePath: Try[String]

    Retrieves the path to the source corresponding to this location.

    Retrieves the path to the source corresponding to this location.

    returns

    Success containing the source path, otherwise a failure

  24. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CommonInfo

Inherited from JavaInfo

Inherited from AnyRef

Inherited from Any

Ungrouped