Package com.ribsapp

Class App


  • public class App
    extends java.lang.Object
    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 
      Constructor Description
      App​(java.lang.String[] args)
      Creates a new app instance.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static void main​(java.lang.String[] args)
      This is the static main method, called by Java when launching with com.reportmill.App.
      void newDocument()
      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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • App

        public App​(java.lang.String[] args)
        Creates a new app instance.
    • Method Detail

      • main

        public static void main​(java.lang.String[] args)
        This is the static main method, called by Java when launching with com.reportmill.App.
      • shared

        public static App shared()
        Returns the shared app instance.
      • 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).