Package com.ribsapp
Class App
java.lang.Object
com.ribsapp.App
This is the main class for the ReportMill app. You can run it from the command line like this:
prompt> java -cp ReportMill.jar com.reportmill.App
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic void
This is the static main method, called by Java when launching with com.reportmill.App.void
Creates a new document (invoked by welcome panel).void
open()
Opens an existing document (invoked by welcome panel).void
quit()
Quits the application (invoked by welcome panel).static App
shared()
Returns the shared app instance.void
welcome()
Brings up the welcome panel.
-
Constructor Details
-
App
Creates a new app instance.
-
-
Method Details
-
main
This is the static main method, called by Java when launching with com.reportmill.App. -
welcome
public void welcome()Brings up the welcome panel. -
newDocument
public void newDocument()Creates a new document (invoked by welcome panel). -
open
public void open()Opens an existing document (invoked by welcome panel). -
quit
public void quit()Quits the application (invoked by welcome panel).
-