All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.swing.SwingApplication.scala Maven / Gradle / Ivy

There is a newer version: 2.11.0-M7
Show newest version
package scala.swing

abstract class SwingApplication extends Reactor {
  def main(args: Array[String]) = Swing.onEDT { startup(args) }

  def startup(args: Array[String])
  def quit() { shutdown(); sys.exit(0) }
  def shutdown() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy