001: /*
002: * The Unified Mapping Platform (JUMP) is an extensible, interactive GUI
003: * for visualizing and manipulating spatial features with geometry and attributes.
004: *
005: * Copyright (C) 2003 Vivid Solutions
006: *
007: * This program is free software; you can redistribute it and/or
008: * modify it under the terms of the GNU General Public License
009: * as published by the Free Software Foundation; either version 2
010: * of the License, or (at your option) any later version.
011: *
012: * This program is distributed in the hope that it will be useful,
013: * but WITHOUT ANY WARRANTY; without even the implied warranty of
014: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
015: * GNU General Public License for more details.
016: *
017: * You should have received a copy of the GNU General Public License
018: * along with this program; if not, write to the Free Software
019: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
020: *
021: * For more information, contact:
022: *
023: * Vivid Solutions
024: * Suite #1A
025: * 2328 Government Street
026: * Victoria BC V8T 5G5
027: * Canada
028: *
029: * (250)385-6040
030: * www.vividsolutions.com
031: */
032: package com.vividsolutions.jump.workbench.ui;
033:
034: import com.vividsolutions.jump.I18N;
035:
036: /**
037: * First level menus names of JUMP
038: * @author Basile Chandesris - <chandesris@pt-consulting.lu>
039: */
040: public interface MenuNames {
041: public static String FILE = I18N.get("ui.MenuNames.FILE");
042: public static String FILE_EXPORTLAYERVIEW = I18N
043: .get("ui.MenuNames.FILE.EXPORTLAYERVIEW");
044: public static String EDIT = I18N.get("ui.MenuNames.EDIT");
045: public static String TOOLS_EDIT_ATTRIBUTES = I18N
046: .get("ui.MenuNames.EDIT")
047: + " " + I18N.get("ui.MenuNames.ATTRIBUTS");
048: public static String TOOLS_EDIT_GEOMETRY = I18N
049: .get("ui.MenuNames.EDIT")
050: + " " + I18N.get("ui.MenuNames.GEOMETRY");
051: public static String VIEW = I18N.get("ui.MenuNames.VIEW");
052: public static String LAYER = I18N.get("ui.MenuNames.LAYER");
053: public static String TOOLS = I18N.get("ui.MenuNames.TOOLS");
054: public static String TOOLS_GENERATE = I18N
055: .get("ui.MenuNames.TOOLS.GENERATE");
056: public static String TOOLS_WARP = I18N
057: .get("ui.MenuNames.TOOLS.WARP");
058: public static String TOOLS_ANALYSIS = I18N
059: .get("ui.MenuNames.TOOLS.ANALYSIS");
060: public static String TOOLS_QA = I18N.get("ui.MenuNames.TOOLS.QA");
061: public static String TOOLS_JOIN = I18N
062: .get("ui.MenuNames.TOOLS.JOIN");
063: public static String TOOLS_GENERALIZATION = I18N
064: .get("ui.MenuNames.TOOLS.GENERALIZATION");
065: //public static String TOOLS_PROGRAMMING =I18N.get("ui.MenuNames.TOOLS.PROGRAMMING");
066: public static String TOOLS_QUERIES = I18N
067: .get("org.openjump.core.ui.plugin.queries.SimpleQuery.menu");
068: public static String WINDOW = I18N.get("ui.MenuNames.WINDOW");
069: public static String HELP = I18N.get("ui.MenuNames.HELP");
070: public static String PLUGINS = I18N.get("ui.MenuNames.PLUGINS");
071:
072: // Michael Michaud 2007-03-23
073: // New menu for plugin manager, beanshell console, scripts
074: public static String CUSTOMIZE = I18N.get("ui.MenuNames.CUSTOMIZE");
075:
076: //erwan début décembre 2005 --- SIGLE
077: //Menu
078: public static String ATTRIBUTS = I18N.get("ui.MenuNames.ATTRIBUTS");
079: public static String SELECTION = I18N.get("ui.MenuNames.SELECTION");
080: public static String RASTER = I18N.get("ui.MenuNames.RASTER");
081: public static String STATISTICS = I18N
082: .get("ui.MenuNames.STATISTICS");
083: public static String GEOPROCESSING = "SIGLE-"
084: + I18N.get("ui.MenuNames.GEOPROCESSING");
085:
086: //Submenu
087: public static String ONELAYER = I18N.get("ui.MenuNames.ONELAYER");
088: public static String TWOLAYERS = I18N.get("ui.MenuNames.TWOLAYERS");
089: public static String CONVERT = I18N.get("ui.MenuNames.CONVERT");
090: public static String EXTRACT = I18N.get("ui.MenuNames.EXTRACT");
091: public static String MERGE = I18N.get("ui.MenuNames.MERGE");
092: public static String GENERALIZATION = I18N
093: .get("ui.MenuNames.GENERALIZATION");
094: public static String TOPOLOGY = I18N.get("ui.MenuNames.TOPOLOGY");
095: public static String QA = I18N.get("ui.MenuNames.QA");
096: public static String DELETE = I18N.get("ui.MenuNames.DELETE");
097: public static String DETECT = I18N.get("ui.MenuNames.DETECT");
098:
099: // erwan fin décembre 2005
100:
101: }
|