abstract
class
Action extends AnyRef
Instance Constructors
-
new
Action(title0: String)
Abstract Value Members
-
abstract
def
apply(): Unit
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
def
accelerator: Option[KeyStroke]
-
def
accelerator_=(k: Option[KeyStroke]): Unit
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
enabled: Boolean
-
def
enabled_=(b: Boolean): Unit
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
def
icon: Icon
-
def
icon_=(i: Icon): Unit
-
final
def
isInstanceOf[T0]: Boolean
-
def
longDescription: String
-
def
longDescription_=(t: String): Unit
-
def
mnemonic: Int
-
def
mnemonic_=(m: Int): Unit
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
lazy val
peer: javax.swing.Action
-
def
smallIcon: Icon
-
def
smallIcon_=(i: Icon): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
title: String
-
def
title_=(t: String): Unit
-
def
toString(): String
-
def
toolTip: String
-
def
toolTip_=(t: String): Unit
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
An abstract action to be performed in reaction to user input.
Not every action component will honor every property of its action. An action itself can generally be configured so that certain properties should be ignored and instead taken from the component directly. In the end, it is up to a component which property it uses in which way.
javax.swing.Action