object Action

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Action
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait Trigger extends AnyRef

    Something that triggers an action.

Value Members

  1. def apply(title: String)(body: ⇒ Unit): Action

    Convenience method to create an action with a given title and body to run.

  2. object NoAction extends Action with Product with Serializable

    Special action that has an empty title and all default properties and does nothing.

    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.

  3. object Trigger