c

scala.swing

SwingApplication

abstract class SwingApplication extends Reactor

Convenience class with utility methods for GUI applications.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SwingApplication
  2. Reactor
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SwingApplication()

Abstract Value Members

  1. abstract def startup(args: Array[String]): Unit

    Called before the GUI is created.

    Called before the GUI is created. Override to customize.

Concrete Value Members

  1. def deafTo(ps: Publisher*): Unit

    Installed reaction won't receive events from the given publisher anylonger.

    Installed reaction won't receive events from the given publisher anylonger.

    Definition Classes
    Reactor
  2. def listenTo(ps: Publisher*): Unit

    Listen to the given publisher as long as deafTo isn't called for them.

    Listen to the given publisher as long as deafTo isn't called for them.

    Definition Classes
    Reactor
  3. def main(args: Array[String]): Unit

    Initializes the application and runs the given program.

  4. def quit(): Unit

    Finalizes the application by calling shutdown and exits.

  5. val reactions: Reactions

    All reactions of this reactor.

    All reactions of this reactor.

    Definition Classes
    Reactor
  6. def shutdown(): Unit

    Called before the application is exited.

    Called before the application is exited. Override to customize.