Package com.gi.desktop.maptool.dialog

Examples of com.gi.desktop.maptool.dialog.AboutDialog


    dialog.setVisible(true);
  }

  private AboutDialog geAboutDialog() {
    if (aboutDialog == null) {
      aboutDialog = new AboutDialog();
    }

    return aboutDialog;
  }
View Full Code Here


    return aboutDialog;
  }

  private void openAboutDialog() {
    AboutDialog dialog = geAboutDialog();
    dialog.setModal(true);
    dialog.setLocation(this.getX()+(this.getWidth() - dialog.getWidth()) / 2, this.getY()+(this
        .getHeight() - dialog.getHeight()) / 2);
    dialog.setVisible(true);
  }
View Full Code Here

TOP

Related Classes of com.gi.desktop.maptool.dialog.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.