Package com.ribsapp
Class App
- java.lang.Object
- 
- com.ribsapp.App
 
- 
 public class App extends java.lang.ObjectThis 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 Constructor Description App(java.lang.String[] args)Creates a new app instance.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static voidmain(java.lang.String[] args)This is the static main method, called by Java when launching with com.reportmill.App.voidnewDocument()Creates 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.
 
- 
- 
- 
Method Detail- 
mainpublic static void main(java.lang.String[] args) This is the static main method, called by Java when launching with com.reportmill.App.
 - 
sharedpublic static App shared() Returns the shared app instance.
 - 
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).
 
- 
 
-