subscript.swing

PureScalaDebugger

Related Doc: package swing

object PureScalaDebugger extends PureScalaDebuggerApp

Source
PureScalaDebugger.scala
Linear Supertypes
PureScalaDebuggerApp, GraphicalDebugger, MsgListener, SimpleSwingApplication, SwingApplication, Reactor, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PureScalaDebugger
  2. PureScalaDebuggerApp
  3. GraphicalDebugger
  4. MsgListener
  5. SimpleSwingApplication
  6. SwingApplication
  7. Reactor
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

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

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

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

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  4. def MAX_STEP_DELAY_SEC: Int

    Definition Classes
    GraphicalDebugger
  5. object MessageStatusLock

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

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  7. def attach(p: MsgPublisher): Unit

    Definition Classes
    GraphicalDebugger → MsgListener
  8. val autoCheckBox: CheckBox

    Definition Classes
    GraphicalDebugger
  9. def autoStepCommand: Future[Unit]

    Definition Classes
    PureScalaDebuggerApp
  10. def awaitMessageBeingHandled(value: Boolean): Unit

    Definition Classes
    GraphicalDebugger
  11. val borderPanelMsgs: BorderPanel

    Definition Classes
    GraphicalDebugger
  12. val buttonsPanel: BoxPanel

    Definition Classes
    GraphicalDebugger
  13. def callGraphMessages: PriorityQueue[CallGraphMessage]

    Definition Classes
    GraphicalDebugger
  14. val callGraphPanel: Panel

    Definition Classes
    GraphicalDebugger
  15. val checkBox_log_AAHappened: CheckBox

    Definition Classes
    GraphicalDebugger
  16. val checkBox_log_AAToBeExecuted: CheckBox

    Definition Classes
    GraphicalDebugger
  17. val checkBox_log_Activation: CheckBox

    Definition Classes
    GraphicalDebugger
  18. val checkBox_log_Break: CheckBox

    Definition Classes
    GraphicalDebugger
  19. val checkBox_log_Continuation: CheckBox

    Definition Classes
    GraphicalDebugger
  20. val checkBox_log_Deactivation: CheckBox

    Definition Classes
    GraphicalDebugger
  21. val checkBox_log_Exclude: CheckBox

    Definition Classes
    GraphicalDebugger
  22. val checkBox_log_Success: CheckBox

    Definition Classes
    GraphicalDebugger
  23. val checkBox_log_Wait: CheckBox

    Definition Classes
    GraphicalDebugger
  24. val checkBox_step_AAHappened: CheckBox

    Definition Classes
    GraphicalDebugger
  25. val checkBox_step_AAToBeExecuted: CheckBox

    Definition Classes
    GraphicalDebugger
  26. val checkBox_step_Activation: CheckBox

    Definition Classes
    GraphicalDebugger
  27. val checkBox_step_Break: CheckBox

    Definition Classes
    GraphicalDebugger
  28. val checkBox_step_Continuation: CheckBox

    Definition Classes
    GraphicalDebugger
  29. val checkBox_step_Deactivation: CheckBox

    Definition Classes
    GraphicalDebugger
  30. val checkBox_step_Exclude: CheckBox

    Definition Classes
    GraphicalDebugger
  31. val checkBox_step_Success: CheckBox

    Definition Classes
    GraphicalDebugger
  32. val checkBox_step_Wait: CheckBox

    Definition Classes
    GraphicalDebugger
  33. def clone(): AnyRef

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  34. def confirmExit: Boolean

    Definition Classes
    GraphicalDebugger
  35. var currentMessage: CallGraphMessage

    Definition Classes
    GraphicalDebugger
  36. val currentMessageTF: TextField

    Definition Classes
    GraphicalDebugger
  37. val currentMsgFont: Font

    Definition Classes
    GraphicalDebugger
  38. def deafTo(ps: Publisher*): Unit

    Definition Classes
    Reactor
  39. val descriptionTF: TextField

    Definition Classes
    GraphicalDebugger
  40. val doTemplateTreeTopLeft: Boolean

    Definition Classes
    GraphicalDebugger
  41. def doesThisAllowToBeDebugged: Boolean

    Definition Classes
    GraphicalDebugger
  42. def drawStringCentered(g: Graphics2D, s: String, cx: Int, cy: Int): Unit

    Definition Classes
    GraphicalDebugger
  43. def drawStringTopLeft(g: Graphics2D, s: String, x: Int, y: Int): Unit

    Definition Classes
    GraphicalDebugger
  44. def drawStringTopRight(g: Graphics2D, s: String, x: Int, y: Int): Unit

    Definition Classes
    GraphicalDebugger
  45. def dumpExecutor(executor: ScriptExecutor[_]): Unit

    Definition Classes
    GraphicalDebugger
  46. def dumpExecutors: Unit

    Definition Classes
    GraphicalDebugger
  47. def dumpStacks: Unit

    Definition Classes
    GraphicalDebugger
  48. def emphasize_g(g: Graphics2D, doIt: Boolean): Unit

    Definition Classes
    GraphicalDebugger
  49. final def eq(arg0: AnyRef): Boolean

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

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

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  51. implicit val executionContext: ExecutionContextExecutorService

    Definition Classes
    PureScalaDebuggerApp
  52. val exitButton: Button

    Definition Classes
    GraphicalDebugger
  53. def exitCommand: Future[Unit]

    Definition Classes
    PureScalaDebuggerApp
  54. var exitConfirmed: Boolean

    Definition Classes
    GraphicalDebugger
  55. val fatStroke: BasicStroke

    Definition Classes
    GraphicalDebugger
  56. def fillColor(n: CallGraphNode, defaultColor: Color, allowOverride: Boolean): Color

    Definition Classes
    GraphicalDebugger
  57. def finalize(): Unit

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  58. val fixedWidthFont: Font

    Definition Classes
    GraphicalDebugger
  59. def futureButtonClick(button: Button): Future[Unit]

    Definition Classes
    PureScalaDebuggerApp
  60. final def getClass(): Class[_]

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  61. def hashCode(): Int

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  62. def interestingContinuationInternals(c: Continuation): List[String]

    Definition Classes
    GraphicalDebugger
  63. final def isInstanceOf[T0]: Boolean

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  64. def kickExecutor(executor: ScriptExecutor[_]): Unit

    Definition Classes
    GraphicalDebugger
  65. def kickExecutors: Unit

    Definition Classes
    GraphicalDebugger
  66. val lightBlue: Color

    Definition Classes
    GraphicalDebugger
  67. val lightGreen: Color

    Definition Classes
    GraphicalDebugger
  68. val lightOrange: Color

    Definition Classes
    GraphicalDebugger
  69. val lightPurple: Color

    Definition Classes
    GraphicalDebugger
  70. val lightRed: Color

    Definition Classes
    GraphicalDebugger
  71. def listenTo(ps: Publisher*): Unit

    Definition Classes
    Reactor
  72. def live: Unit

  73. val logListMsgsCleanups: Int

    Definition Classes
    GraphicalDebugger
  74. def logMessage(m: String, msg: CallGraphMessage): Unit

    Definition Classes
    GraphicalDebugger
  75. def logMessage_GUIThread(m: String, msg: CallGraphMessage): Unit

    Definition Classes
    GraphicalDebugger
  76. def main(args: Array[String]): Unit

    Definition Classes
    PureScalaDebuggerAppGraphicalDebugger → SwingApplication
  77. val maxLogListMsgs: Int

    Definition Classes
    GraphicalDebugger
  78. def messageAwaiting: Unit

    Definition Classes
    GraphicalDebugger → MsgListener
  79. def messageBeingHandled(value: Boolean): Unit

    Definition Classes
    GraphicalDebugger
  80. var messageBeingHandled: Boolean

    Definition Classes
    GraphicalDebugger
  81. def messageContinuation(m: CallGraphMessage, c: Continuation): Unit

    Definition Classes
    GraphicalDebugger → MsgListener
  82. def messageDequeued(m: CallGraphMessage): Unit

    Definition Classes
    GraphicalDebugger → MsgListener
  83. def messageHandled(m: CallGraphMessage): Unit

    Definition Classes
    GraphicalDebugger → MsgListener
  84. def messageQueued(m: CallGraphMessage): Unit

    Definition Classes
    GraphicalDebugger → MsgListener
  85. val msgLogList: ListBuffer[String]

    Definition Classes
    GraphicalDebugger
  86. val msgLogListModel: DefaultListModel[String]

    Definition Classes
    GraphicalDebugger
  87. val msgLogListView: ListView[String]

    Definition Classes
    GraphicalDebugger
  88. val msgLogListViewScrollPane: ScrollPane

    Definition Classes
    GraphicalDebugger
  89. val msgQueueList: ListBuffer[String]

    Definition Classes
    GraphicalDebugger
  90. val msgQueueListModel: DefaultListModel[CallGraphMessage]

    Definition Classes
    GraphicalDebugger
  91. val msgQueueListView: ListView[String]

    Definition Classes
    GraphicalDebugger
  92. val msgQueueListViewScrollPane: ScrollPane

    Definition Classes
    GraphicalDebugger
  93. val myScriptExecutor: CommonScriptExecutor[Any]

    Definition Classes
    GraphicalDebugger
  94. final def ne(arg0: AnyRef): Boolean

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  95. val normalFont: Font

    Definition Classes
    GraphicalDebugger
  96. val normalStroke: BasicStroke

    Definition Classes
    GraphicalDebugger
  97. final def notify(): Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  98. final def notifyAll(): Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  99. def onPaintCallGraph(g: Graphics2D): Unit

    Definition Classes
    GraphicalDebugger
  100. def onPaintTemplateTrees(g: Graphics2D): Unit

    Definition Classes
    GraphicalDebugger
  101. def otherScriptExecutor: ScriptExecutor[_]

    Definition Classes
    GraphicalDebugger
  102. def otherTraceLevel: Int

    Definition Classes
    GraphicalDebugger
  103. def quit(): Unit

    Definition Classes
    SwingApplication
  104. val reactions: Reactions

    Definition Classes
    Reactor
  105. def resourceFromClassloader(path: String): URL

    Definition Classes
    SimpleSwingApplication
  106. def resourceFromUserDirectory(path: String): File

    Definition Classes
    SimpleSwingApplication
  107. def rootNode: N_launch_anchor

    Definition Classes
    GraphicalDebugger
  108. def shouldStep: Boolean

    Definition Classes
    GraphicalDebugger
  109. def shutdown(): Unit

    Definition Classes
    SwingApplication
  110. def sleep(duration_ms: Long): Unit

    Definition Classes
    GraphicalDebugger
  111. val smallFont: Font

    Definition Classes
    GraphicalDebugger
  112. val speedSlider: Slider

    Definition Classes
    GraphicalDebugger
  113. var splitPaneMain: SplitPane

    Definition Classes
    GraphicalDebugger
  114. def startup(args: Array[String]): Unit

    Definition Classes
    SimpleSwingApplication → SwingApplication
  115. val stepButton: Button

    Definition Classes
    GraphicalDebugger
  116. def stepCommand: Future[Unit]

    Definition Classes
    PureScalaDebuggerApp
  117. def stepSleep_ms: Int

    Definition Classes
    GraphicalDebugger
  118. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  119. val templateTreesPanel: Panel

    Definition Classes
    GraphicalDebugger
  120. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    AnyRef → Any
  121. val top: Frame

    Definition Classes
    GraphicalDebugger
  122. def trace(s: ⇒ Any): Unit

    Definition Classes
    GraphicalDebugger
  123. def traceLevel: Int

    Definition Classes
    GraphicalDebugger
  124. def updateDisplay: Unit

    Definition Classes
    GraphicalDebugger
  125. var vmThread: Thread

    Definition Classes
    GraphicalDebugger
  126. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  129. def waitForExit: Future[Unit]

    Definition Classes
    PureScalaDebuggerApp
  130. def waitForStepTimeout: Unit

    Definition Classes
    GraphicalDebugger

Inherited from PureScalaDebuggerApp

Inherited from GraphicalDebugger

Inherited from MsgListener

Inherited from SimpleSwingApplication

Inherited from SwingApplication

Inherited from Reactor

Inherited from AnyRef

Inherited from Any

Ungrouped