scala.swing.Action
NoAction
object
NoAction
extends Action with Product
Value Members
-
def
!=
(arg0: AnyRef)
: Boolean
-
def
!=
(arg0: Any)
: Boolean
-
def
##
()
: Int
-
def
$asInstanceOf
[T0]
()
: T0
-
def
$isInstanceOf
[T0]
()
: Boolean
-
def
==
(arg0: AnyRef)
: Boolean
-
def
==
(arg0: Any)
: Boolean
-
def
accelerator
: Option[KeyStroke]
-
def
accelerator_=
(k: Option[KeyStroke])
: Unit
-
def
apply
()
: Unit
-
def
asInstanceOf
[T0]
: T0
-
def
canEqual
(arg0: Any)
: Boolean
-
def
clone
()
: AnyRef
-
def
enabled
: Boolean
-
def
enabled_=
(b: Boolean)
: Unit
-
def
eq
(arg0: AnyRef)
: Boolean
-
def
equals
(arg0: Any)
: Boolean
-
def
finalize
()
: Unit
-
def
getClass
()
: java.lang.Class[_ <: java.lang.Object]
-
def
hashCode
()
: Int
-
def
icon
: Icon
-
def
icon_=
(i: Icon)
: Unit
-
def
isInstanceOf
[T0]
: Boolean
-
def
longDescription
: String
-
def
longDescription_=
(t: String)
: Unit
-
def
mnemonic
: Int
-
def
mnemonic_=
(m: Int)
: Unit
-
def
ne
(arg0: AnyRef)
: Boolean
-
def
notify
()
: Unit
-
def
notifyAll
()
: Unit
-
lazy val
peer
: Action
-
def
productArity
: Int
-
def
productElement
(arg0: Int)
: Any
-
def
productElements
: Iterator[Any]
-
def
productIterator
: Iterator[Any]
-
def
productPrefix
: String
-
def
readResolve
()
: AnyRef
-
def
smallIcon
: Icon
-
def
smallIcon_=
(i: Icon)
: Unit
-
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
-
def
wait
()
: Unit
-
def
wait
(arg0: Long, arg1: Int)
: Unit
-
def
wait
(arg0: Long)
: Unit
Inherited from Product
Value Members
-
def
productElements
: Iterator[Any]
-
def
productIterator
: Iterator[Any]
Inherited from Action
Value Members
-
def
accelerator
: Option[KeyStroke]
-
def
accelerator_=
(k: Option[KeyStroke])
: Unit
-
def
enabled
: Boolean
-
def
enabled_=
(b: Boolean)
: Unit
-
def
icon
: Icon
-
def
icon_=
(i: Icon)
: Unit
-
def
longDescription
: String
-
def
longDescription_=
(t: String)
: Unit
-
def
mnemonic
: Int
-
def
mnemonic_=
(m: Int)
: Unit
-
lazy val
peer
: Action
-
def
smallIcon
: Icon
-
def
smallIcon_=
(i: Icon)
: Unit
-
def
title
: String
-
def
title_=
(t: String)
: Unit
-
def
toolTip
: String
-
def
toolTip_=
(t: String)
: Unit
Inherited from AnyRef
Value Members
-
def
!=
(arg0: AnyRef)
: Boolean
-
def
##
()
: Int
-
def
$asInstanceOf
[T0]
()
: T0
-
def
$isInstanceOf
[T0]
()
: Boolean
-
def
==
(arg0: AnyRef)
: Boolean
-
def
clone
()
: AnyRef
-
def
eq
(arg0: AnyRef)
: Boolean
-
def
equals
(arg0: Any)
: Boolean
-
def
finalize
()
: Unit
-
def
getClass
()
: java.lang.Class[_ <: java.lang.Object]
-
def
hashCode
()
: Int
-
def
ne
(arg0: AnyRef)
: Boolean
-
def
notify
()
: Unit
-
def
notifyAll
()
: Unit
-
def
synchronized
[T0]
(arg0: T0)
: T0
-
def
wait
()
: Unit
-
def
wait
(arg0: Long, arg1: Int)
: Unit
-
def
wait
(arg0: Long)
: Unit
Inherited from Any
Value Members
-
def
!=
(arg0: Any)
: Boolean
-
def
==
(arg0: Any)
: Boolean
-
def
asInstanceOf
[T0]
: T0
-
def
isInstanceOf
[T0]
: Boolean
Special action that has an empty title and all default properties and does nothing. Use this as a "null action", i.e., to tell components that they do not have any associated action. A component may then obtain its properties from its direct members instead of from its action. In Java Swing, one would use
null
instead of a designated action.