Package de.hpi.eworld.core.ui.dialogs

Examples of de.hpi.eworld.core.ui.dialogs.MapPropertiesDialog


    final SharedAction mapPropertiesAction = new SharedAction() {
      private static final long serialVersionUID = 4641510452683324455L;

      @Override
      protected void execute(final ActionEvent e) {
        final MapPropertiesDialog dialog = new MapPropertiesDialog(MainWindow.getInstance());
        dialog.setVisible(true);
      }
    };
    mapPropertiesAction.setText("Map Properties...");
    mapPropertiesAction.setSmallIcon(ResourceLoader.createIconFromLocalResource(CorePlugin.class, Images.GLOBE_IMAGE, 16));
    mapPropertiesAction.setLargeIcon(ResourceLoader.createIconFromLocalResource(CorePlugin.class, Images.GLOBE_IMAGE, 20));
View Full Code Here

TOP

Related Classes of de.hpi.eworld.core.ui.dialogs.MapPropertiesDialog

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.