Added a souce context menu to the editor; moved "Goto Matching Bracket" to "Navigate...
[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
15  * for actions 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   /**
28    * Edit menu: name of standard Code Assist global action
29    * (value <code>"org.phpeclipse.phpdt.ui.actions.ContentAssist"</code>).
30    */
31   public static final String CONTENT_ASSIST = "net.sourceforge.phpeclipse.phpeditor.ContentAssist"; //$NON-NLS-1$
32
33   // Source menu        
34
35   /**
36    * Source menu: name of standard Comment global action
37    * (value <code>"net.sourceforge.phpdt.ui.actions.Comment"</code>).
38    */
39   public static final String COMMENT = "net.sourceforge.phpeclipse.phpeditor.Comment"; //$NON-NLS-1$
40
41   /**
42    * Source menu: name of standard Uncomment global action
43    * (value <code>"net.sourceforge.phpdt.ui.actions.Uncomment"</code>).
44    */
45   public static final String UNCOMMENT = "net.sourceforge.phpeclipse.phpeditor.Uncomment"; //$NON-NLS-1$
46   /**
47          * Source menu: name of standard Shift Rightl action
48          * (value <code>"net.sourceforge.phpeclipse.phpeditor.ShiftRight"</code>).
49          */
50   public static final String SHIFT_RIGHT = "net.sourceforge.phpeclipse.phpeditor.ShiftRight"; //$NON-NLS-1$
51
52   /**
53    * Source menu: name of standard Shift Left global action
54    * (value <code>"net.sourceforge.phpeclipse.phpeditor.ShiftLeft"</code>).
55    */
56   public static final String SHIFT_LEFT = "net.sourceforge.phpeclipse.phpeditor.ShiftLeft"; //$NON-NLS-1$
57
58   /**
59    * Source menu: name of standard Format global action (value <code>"org.
60    * phpeclipse.phpdt.ui.actions.Format"</code>).
61    */
62   public static final String FORMAT = "net.sourceforge.phpeclipse.phpeditor.Format"; //$NON-NLS-1$
63
64   /**
65    * Source menu: name of standard Convert Line Delimiters To Windows global action
66    * (value <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToWindows"</code>).
67    */
68   public static String CONVERT_LINE_DELIMITERS_TO_WINDOWS = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToWindows"; //$NON-NLS-1$
69
70   /**
71    * Source menu: name of standard Convert Line Delimiters To UNIX global action
72    * (value <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToUNIX"</code>).
73    */
74   public static String CONVERT_LINE_DELIMITERS_TO_UNIX = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToUNIX"; //$NON-NLS-1$
75
76   /**
77    * Source menu: name of standardConvert Line Delimiters ToMac global action
78    * (value <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToMac"</code>).
79    */
80   public static String CONVERT_LINE_DELIMITERS_TO_MAC = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToMac"; //$NON-NLS-1$
81
82   /**
83    * Navigate menu: name of standard Open global action
84    * (value <code>"org.phpeclipse.phpdt.ui.actions.Open"</code>).
85    */
86   public static final String OPEN = "net.sourceforge.phpeclipse.ui.actions.Open"; //$NON-NLS-1$
87
88 }