Package net.sourceforge.ganttproject.gui.about

Examples of net.sourceforge.ganttproject.gui.about.AboutDialog


                this);
        cp.show();
    }

    private void aboutDialog() {
        AboutDialog agp = new AboutDialog(this);
        agp.show();
    }
View Full Code Here


  /*
   * Handle the Mac OSX "about" menu option.
   */

  public void handleAbout(ApplicationEvent event) {
    AboutDialog abd = new AboutDialog(myProj);
    abd.setVisible(true);
    /* Indicate we've handled this event ourselves */
    event.setHandled(true);
  }
 
View Full Code Here

TOP

Related Classes of net.sourceforge.ganttproject.gui.about.AboutDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.