Package gov.nasa.arc.mct.gui

Examples of gov.nasa.arc.mct.gui.MenuItemInfo


  }

  @Override
  public Collection<MenuItemInfo> getMenuItemInfos() {
    return Arrays.asList(
        new MenuItemInfo("/objects/import.ext",
            "IMPORT_MCT_ACTION",
            MenuItemType.NORMAL, ImportAction.class),
        new MenuItemInfo("/objects/export.ext",
            "EXPORT_MCT_ACTION",
            MenuItemType.NORMAL, ExportAction.class),
        new MenuItemInfo("/this/import.ext",
            "IMPORT_THIS_ACTION",
            MenuItemType.NORMAL, ImportThisAction.class),
        new MenuItemInfo("/this/export.ext",
            "EXPORT_THIS_ACTION",
            MenuItemType.NORMAL, ExportThisAction.class));
  }
View Full Code Here

TOP

Related Classes of gov.nasa.arc.mct.gui.MenuItemInfo

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.