Package com.gi.desktop.maptool.dialog

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


    }
  }

  private MapConfDialog getMapConfDialog() {
    if (mapConfDialog == null) {
      mapConfDialog = new MapConfDialog(this);
    }

    return mapConfDialog;
  }
View Full Code Here


    return mapConfDialog;
  }

  private void openMapConfDialog() {
    MapConfDialog dialog = getMapConfDialog();
    dialog.loadMapDesc();
    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.MapConfDialog

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.