01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: *
17: */
18:
19: package org.apache.jmeter.gui.action;
20:
21: /*
22: * Collect all the action names together in one place.
23: * This helps to ensure that there are no duplicates
24: *
25: *
26: */
27: public class ActionNames {
28:
29: public static final String ABOUT = "about"; // $NON-NLS-1$
30: public static final String ACTION_SHUTDOWN = "shutdown"; // $NON-NLS-1$
31: public static final String ACTION_START = "start"; // $NON-NLS-1$
32: public static final String ACTION_STOP = "stop"; // $NON-NLS-1$
33: public static final String ADD = "Add"; // $NON-NLS-1$
34: public static final String ADD_ALL = "add_all"; // $NON-NLS-1$
35: public static final String ADD_PARENT = "Add Parent"; // $NON-NLS-1$
36: public static final String ANALYZE_FILE = "Analyze File"; // $NON-NLS-1$
37: public static final String CHANGE_LANGUAGE = "change_language"; // $NON-NLS-1$
38: public static final String CHECK_DIRTY = "check_dirty"; // $NON-NLS-1$
39: public static final String CHECK_REMOVE = "check_remove"; // $NON-NLS-1$
40: public final static String CLEAR = "action.clear"; // $NON-NLS-1$
41: public final static String CLEAR_ALL = "action.clear_all"; // $NON-NLS-1$
42: public static final String CLOSE = "close"; // $NON-NLS-1$
43: public static final String COLLAPSE_ALL = "collapse all"; // $NON-NLS-1$
44: public static final String COPY = "Copy"; // $NON-NLS-1$
45: public final static String CUT = "Cut"; // $NON-NLS-1$
46: public static final String DEBUG_ON = "debug_on"; // $NON-NLS-1$
47: public static final String DEBUG_OFF = "debug_off"; // $NON-NLS-1$
48: public static final String DISABLE = "disable"; // $NON-NLS-1$
49: public final static String DRAG_ADD = "drag_n_drop.add";//$NON-NLS-1$
50: public static final String EDIT = "edit"; // $NON-NLS-1$
51: public static final String ENABLE = "enable"; // $NON-NLS-1$
52: public static final String EXIT = "exit"; // $NON-NLS-1$
53: public static final String EXPAND_ALL = "expand all"; // $NON-NLS-1$
54: public static final String FUNCTIONS = "functions"; // $NON-NLS-1$
55: public final static String HELP = "help"; // $NON-NLS-1$
56: public final static String INSERT_AFTER = "drag_n_drop.insert_after";//$NON-NLS-1$
57: public final static String INSERT_BEFORE = "drag_n_drop.insert_before";//$NON-NLS-1$
58: public static final String LAF_PREFIX = "laf:"; // Look and Feel prefix
59: public static final String MERGE = "merge"; // $NON-NLS-1$
60: public static final String OPEN = "open"; // $NON-NLS-1$
61: public static final String OPEN_RECENT = "open_recent"; // $NON-NLS-1$
62: public static final String PASTE = "Paste"; // $NON-NLS-1$
63: public static final String REMOTE_EXIT = "remote_exit"; // $NON-NLS-1$
64: public static final String REMOTE_EXIT_ALL = "remote_exit_all"; // $NON-NLS-1$
65: public static final String REMOTE_START = "remote_start"; // $NON-NLS-1$
66: public static final String REMOTE_START_ALL = "remote_start_all"; // $NON-NLS-1$
67: public static final String REMOTE_STOP = "remote_stop"; // $NON-NLS-1$
68: public static final String REMOTE_STOP_ALL = "remote_stop_all"; // $NON-NLS-1$
69: public static final String REMOVE = "remove"; // $NON-NLS-1$
70: public static final String RESET_GUI = "reset_gui"; // $NON-NLS-1$
71: public static final String REVERT_PROJECT = "revert_project"; // $NON-NLS-1$
72: public final static String SAVE = "save"; // $NON-NLS-1$
73: public final static String SAVE_ALL_AS = "save_all_as"; // $NON-NLS-1$
74: public final static String SAVE_AS = "save_as"; // $NON-NLS-1$
75: public static final String SAVE_GRAPHICS = "save_graphics"; // $NON-NLS-1$
76: public static final String SAVE_GRAPHICS_ALL = "save_graphics_all"; // $NON-NLS-1$
77: public static final String SSL_MANAGER = "sslManager"; // $NON-NLS-1$
78: public static final String SUB_TREE_LOADED = "sub_tree_loaded"; // $NON-NLS-1$
79: public static final String SUB_TREE_MERGED = "sub_tree_merged"; // $NON-NLS-1$
80: public static final String SUB_TREE_SAVED = "sub_tree_saved"; // $NON-NLS-1$
81: public static final String WHAT_CLASS = "what_class"; // $NON-NLS-1$
82:
83: // Prevent instantiation
84: private ActionNames() {
85:
86: }
87: }
|