AbstractDebuggerAction

abstract class AbstractDebuggerAction(    val debugger: AvailDebugger,     name: String,     keyStroke: KeyStroke? = null) : AbstractWorkbenchAction

An AbstractDebuggerAction is attached to an AvailDebugger, and automatically installs itself into the inputMap and actionMap of the root of the debugger's frame, if an accelerator is provided.

Parameters

debugger

The owning AvailDebugger.

name

The name of the action.

keyStroke

The optional window-global KeyStroke used to invoke the action.

Constructors

Link copied to clipboard
fun AbstractDebuggerAction(    debugger: AvailDebugger,     name: String,     keyStroke: KeyStroke? = null)

Construct a new AbstractDebuggerAction.

Functions

Link copied to clipboard
open fun accept(p0: Any): Boolean
Link copied to clipboard
abstract fun actionPerformed(p0: ActionEvent)
Link copied to clipboard
open override fun addPropertyChangeListener(p0: PropertyChangeListener)
Link copied to clipboard
open fun getKeys(): Array<Any>
Link copied to clipboard
open fun getPropertyChangeListeners(): Array<PropertyChangeListener>
Link copied to clipboard
open override fun getValue(p0: String): Any
Link copied to clipboard
open override fun isEnabled(): Boolean
Link copied to clipboard
fun name(): String
Link copied to clipboard
open override fun putValue(p0: String, p1: Any)
Link copied to clipboard
open override fun removePropertyChangeListener(p0: PropertyChangeListener)
Link copied to clipboard
open override fun setEnabled(p0: Boolean)

Properties

Link copied to clipboard
val debugger: AvailDebugger
Link copied to clipboard
val workbench: AvailWorkbench

The owning AvailWorkbench.