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 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
-
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).
-