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 SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic voidThis is the static main method, called by Java when launching with com.reportmill.App.voidCreates a new document (invoked by welcome panel).voidopen()Opens an existing document (invoked by welcome panel).voidquit()Quits the application (invoked by welcome panel).static Appshared()Returns the shared app instance.voidwelcome()Brings up the welcome panel.
- 
Constructor Details- 
AppCreates a new app instance.
 
- 
- 
Method Details- 
mainThis is the static main method, called by Java when launching with com.reportmill.App.
- 
welcomepublic void welcome()Brings up the welcome panel.
- 
newDocumentpublic void newDocument()Creates a new document (invoked by welcome panel).
- 
openpublic void open()Opens an existing document (invoked by welcome panel).
- 
quitpublic void quit()Quits the application (invoked by welcome panel).
 
-