b7b5df5408724060fa61e31c2f307da453da9379
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ui / actions / PHPdtActionConstants.java
1 /*******************************************************************************
2  * Copyright (c) 2002 International Business Machines Corp. and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v0.5 
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v05.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  ******************************************************************************/
11 package net.sourceforge.phpdt.ui.actions;
12
13 /**
14  * Action ids for standard actions, for groups in the menu bar, and for actions
15  * in context menus of PHPDT views.
16  * 
17  * <p>
18  * This class may be instantiated; it is not intended to be subclassed.
19  * </p>
20  * 
21  * @since 2.0
22  */
23 public class PHPdtActionConstants {
24
25         // Edit menu
26         /**
27          * Edit menu: name of standard Show Javadoc global action (value
28          * <code>"net.sourceforge.phpdt.ui.actions.ShowJavaDoc"</code>).
29          */
30         public static final String SHOW_JAVA_DOC = "net.sourceforge.phpeclipse.phpeditor.ShowJavaDoc"; //$NON-NLS-1$
31
32         /**
33          * Edit menu: name of standard Code Assist global action (value
34          * <code>"org.phpeclipse.phpdt.ui.actions.ContentAssist"</code>).
35          */
36         public static final String CONTENT_ASSIST = "net.sourceforge.phpeclipse.phpeditor.ContentAssist"; //$NON-NLS-1$
37
38         // Source menu
39
40         /**
41          * Source menu: name of standard Comment global action (value
42          * <code>"net.sourceforge.phpdt.ui.actions.Comment"</code>).
43          */
44         public static final String COMMENT = "net.sourceforge.phpeclipse.phpeditor.Comment"; //$NON-NLS-1$
45
46         /**
47          * Source menu: name of standard Uncomment global action (value
48          * <code>"net.sourceforge.phpdt.ui.actions.Uncomment"</code>).
49          */
50         public static final String UNCOMMENT = "net.sourceforge.phpeclipse.phpeditor.Uncomment"; //$NON-NLS-1$
51
52         /**
53          * Source menu: name of standard ToggleComment global action (value
54          * <code>"net.sourceforge.phpdt.ui.actions.ToggleComment"</code>).
55          * 
56          * @since 3.0
57          */
58         public static final String TOGGLE_COMMENT = "net.sourceforge.phpeclipse.ui.actions.ToggleComment"; //$NON-NLS-1$
59
60         /**
61          * Source menu: name of standard Comment global action (value
62          * <code>"net.sourceforge.phpdt.ui.actions.AddBlockComment"</code>).
63          * 
64          * @since 3.0
65          */
66         public static final String ADD_BLOCK_COMMENT = "net.sourceforge.phpeclipse.ui.actions.AddBlockComment"; //$NON-NLS-1$
67
68         /**
69          * Source menu: name of standard Uncomment global action (value
70          * <code>"net.sourceforge.phpdt.ui.actions.RemoveBlockComment"</code>).
71          * 
72          * @since 3.0
73          */
74         public static final String REMOVE_BLOCK_COMMENT = "net.sourceforge.phpeclipse.ui.actions.RemoveBlockComment"; //$NON-NLS-1$
75
76         /**
77          * Source menu: name of standard Indent global action (value
78          * <code>"net.sourceforge.phpdt.ui.actions.Indent"</code>).
79          * 
80          * @since 3.0
81          */
82         public static final String INDENT = "net.sourceforge.phpeclipse.ui.actions.Indent"; //$NON-NLS-1$
83
84         /**
85          * Source menu: name of standard Shift Rightl action (value
86          * <code>"net.sourceforge.phpeclipse.phpeditor.ShiftRight"</code>).
87          */
88         public static final String SHIFT_RIGHT = "net.sourceforge.phpeclipse.phpeditor.ShiftRight"; //$NON-NLS-1$
89
90         /**
91          * Source menu: name of standard Shift Left global action (value
92          * <code>"net.sourceforge.phpeclipse.phpeditor.ShiftLeft"</code>).
93          */
94         public static final String SHIFT_LEFT = "net.sourceforge.phpeclipse.phpeditor.ShiftLeft"; //$NON-NLS-1$
95
96         /**
97          * Source menu: name of standard Format global action (value <code>"org.
98          * phpeclipse.phpdt.ui.actions.Format"</code>).
99          */
100         public static final String FORMAT = "net.sourceforge.phpeclipse.phpeditor.Format"; //$NON-NLS-1$
101
102         /**
103          * Source menu: name of standard Convert Line Delimiters To Windows global
104          * action (value
105          * <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToWindows"</code>).
106          */
107         public static String CONVERT_LINE_DELIMITERS_TO_WINDOWS = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToWindows"; //$NON-NLS-1$
108
109         /**
110          * Source menu: name of standard Convert Line Delimiters To UNIX global
111          * action (value
112          * <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToUNIX"</code>).
113          */
114         public static String CONVERT_LINE_DELIMITERS_TO_UNIX = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToUNIX"; //$NON-NLS-1$
115
116         /**
117          * Source menu: name of standardConvert Line Delimiters ToMac global action
118          * (value
119          * <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToMac"</code>).
120          */
121         public static String CONVERT_LINE_DELIMITERS_TO_MAC = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToMac"; //$NON-NLS-1$
122
123         /**
124          * Navigate menu: name of standard Open global action (value
125          * <code>"org.phpeclipse.phpdt.ui.actions.Open"</code>).
126          */
127         public static final String OPEN = "net.sourceforge.phpeclipse.ui.actions.Open"; //$NON-NLS-1$
128
129 }