abstract class SwingApplication extends Reactor
Convenience class with utility methods for GUI applications.
- Alphabetic
- By Inheritance
- SwingApplication
- Reactor
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new SwingApplication()
Abstract Value Members
-
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
-
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
-
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
-
def
main(args: Array[String]): Unit
Initializes the application and runs the given program.
-
def
quit(): Unit
Finalizes the application by calling
shutdown
and exits. -
val
reactions: Reactions
All reactions of this reactor.
All reactions of this reactor.
- Definition Classes
- Reactor
-
def
shutdown(): Unit
Called before the application is exited.
Called before the application is exited. Override to customize.