Package net.sourceforge.sijaf.dialogs.about

Examples of net.sourceforge.sijaf.dialogs.about.GenericAboutBox


  @Action
  public void showAboutBox() {
    if (aboutBox == null) {
      JFrame mainFrame = DefaultDesktopApplication.getApplication().getMainFrame();
      aboutBox = new GenericAboutBox(mainFrame);
      aboutBox.setLocationRelativeTo(mainFrame);
    }
    DefaultDesktopApplication.getApplication().show(aboutBox);
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.sijaf.dialogs.about.GenericAboutBox

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.