01: /*
02: * The contents of this file are subject to the Mozilla Public License
03: * Version 1.1 (the "License"); you may not use this file except in
04: * compliance with the License. You may obtain a copy of the License at
05: * http://www.mozilla.org/MPL/
06: *
07: * Software distributed under the License is distributed on an "AS IS"
08: * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
09: * License for the specific language governing rights and limitations
10: * under the License.
11: *
12: * The Original Code is iSQL-Viewer, A Mutli-Platform Database Tool.
13: *
14: * The Initial Developer of the Original Code is iSQL-Viewer, A Mutli-Platform Database Tool.
15: * Portions created by Mark A. Kobold are Copyright (C) 2000-2007. All Rights Reserved.
16: *
17: * Contributor(s):
18: * Mark A. Kobold [mkobold <at> isqlviewer <dot> com].
19: *
20: * If you didn't download this code from the following link, you should check
21: * if you aren't using an obsolete version: http://www.isqlviewer.com
22: */
23: package org.isqlviewer.swing.action;
24:
25: /**
26: * @author Mark A. Kobold <mkobold at isqlviewer dot com>
27: * @version 1.0
28: */
29: public final class SharedActions {
30:
31: public static final int ADD_BOOKMARK_FOLDER = 0;
32: public static final int CATALOG_CHANGED = 1;
33: public static final int CLEAR_ALL_HISTORY = 2;
34: public static final int CLOSE_ALL_RESULTS = 3;
35: public static final int CLOSE_SELECTED_RESULTS = 4;
36: public static final int CONVERT_HISTORY_TO_BOOKMARK = 5;
37: public static final int CONVERT_TEXT_TO_BOOKMARK = 6;
38: public static final int CREATE_NEW_BOOKMARK = 7;
39: public static final int DELETE_BOOKMARK_SELECTION = 8;
40: public static final int EDIT_BOOKMARK = 9;
41: public static final int EXECUTE_SQL_COMMAND = 10;
42: public static final int EXIT_APPLICATION = 11;
43: public static final int NAVIGATE_RIGHT_TAB = 12;
44: public static final int NAVIGATE_LEFT_TAB = 13;
45: public static final int OVERWRITE_TOGGLE = 14;
46: public static final int REFRESH_SELECTED_RESULTS = 15;
47: public static final int REFRESH_SELECTED_VIEW = 16;
48: public static final int SCHEMA_CHANGED = 17;
49: public static final int SERVICE_ADDED = 18;
50: public static final int SERVICE_CONNECT = 19;
51: public static final int SERVICE_DISCONNECT = 20;
52: public static final int SERVICE_REMOVED = 21;
53: public static final int SERVICE_UPDATED = 22;
54: public static final int SHOW_CONNECTION_INFO = 23;
55: public static final int SHOW_EXPORT_WIZARD = 24;
56: public static final int SHOW_IMPORT_WIZARD = 25;
57: public static final int SHOW_SERVICE_WIZARD = 26;
58:
59: private SharedActions() {
60:
61: }
62: }
|