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
index 0b9bf6b..350dfef 100644 (file)
@@ -43,35 +43,46 @@ public class PHPdtActionConstants {
    * (value <code>"net.sourceforge.phpdt.ui.actions.Uncomment"</code>).
    */
   public static final String UNCOMMENT = "net.sourceforge.phpeclipse.phpeditor.Uncomment"; //$NON-NLS-1$
+  /**
+        * Source menu: name of standard Shift Rightl action
+        * (value <code>"net.sourceforge.phpeclipse.phpeditor.ShiftRight"</code>).
+        */
+  public static final String SHIFT_RIGHT = "net.sourceforge.phpeclipse.phpeditor.ShiftRight"; //$NON-NLS-1$
+
+  /**
+   * Source menu: name of standard Shift Left global action
+   * (value <code>"net.sourceforge.phpeclipse.phpeditor.ShiftLeft"</code>).
+   */
+  public static final String SHIFT_LEFT = "net.sourceforge.phpeclipse.phpeditor.ShiftLeft"; //$NON-NLS-1$
 
   /**
    * Source menu: name of standard Format global action (value <code>"org.
    * phpeclipse.phpdt.ui.actions.Format"</code>).
    */
   public static final String FORMAT = "net.sourceforge.phpeclipse.phpeditor.Format"; //$NON-NLS-1$
-  
+
   /**
    * Source menu: name of standard Convert Line Delimiters To Windows global action
    * (value <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToWindows"</code>).
    */
-  public static String CONVERT_LINE_DELIMITERS_TO_WINDOWS= "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToWindows"; //$NON-NLS-1$
+  public static String CONVERT_LINE_DELIMITERS_TO_WINDOWS = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToWindows"; //$NON-NLS-1$
 
   /**
    * Source menu: name of standard Convert Line Delimiters To UNIX global action
    * (value <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToUNIX"</code>).
    */
-  public static String CONVERT_LINE_DELIMITERS_TO_UNIX= "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToUNIX"; //$NON-NLS-1$
+  public static String CONVERT_LINE_DELIMITERS_TO_UNIX = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToUNIX"; //$NON-NLS-1$
 
   /**
    * Source menu: name of standardConvert Line Delimiters ToMac global action
    * (value <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToMac"</code>).
    */
-  public static String CONVERT_LINE_DELIMITERS_TO_MAC= "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToMac"; //$NON-NLS-1$
+  public static String CONVERT_LINE_DELIMITERS_TO_MAC = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToMac"; //$NON-NLS-1$
 
   /**
    * Navigate menu: name of standard Open global action
    * (value <code>"org.phpeclipse.phpdt.ui.actions.Open"</code>).
    */
-  public static final String OPEN= "net.sourceforge.phpeclipse.ui.actions.Open"; //$NON-NLS-1$
+  public static final String OPEN = "net.sourceforge.phpeclipse.ui.actions.Open"; //$NON-NLS-1$
 
 }