X-Git-Url: http://secure.phpeclipse.com

diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/actions/PHPdtActionConstants.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/actions/PHPdtActionConstants.java
index 350dfef..1f6fc5f 100644
--- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/actions/PHPdtActionConstants.java
+++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/actions/PHPdtActionConstants.java
@@ -23,7 +23,12 @@ package net.sourceforge.phpdt.ui.actions;
 public class PHPdtActionConstants {
 
   //	Edit menu
-
+  /**
+	 * Edit menu: name of standard Show Javadoc global action
+	 * (value <code>"net.sourceforge.phpdt.ui.actions.ShowJavaDoc"</code>).
+	 */
+	public static final String SHOW_JAVA_DOC= "net.sourceforge.phpeclipse.phpeditor.ShowJavaDoc"; //$NON-NLS-1$
+	
   /**
    * Edit menu: name of standard Code Assist global action
    * (value <code>"org.phpeclipse.phpdt.ui.actions.ContentAssist"</code>).
@@ -43,6 +48,38 @@ 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 ToggleComment global action
+	 * (value <code>"net.sourceforge.phpdt.ui.actions.ToggleComment"</code>).
+	 * @since 3.0
+	 */
+	public static final String TOGGLE_COMMENT= "net.sourceforge.phpeclipse.ui.actions.ToggleComment"; //$NON-NLS-1$
+	
+	/**
+	 * Source menu: name of standard Comment global action
+	 * (value <code>"net.sourceforge.phpdt.ui.actions.AddBlockComment"</code>).
+	 * 
+	 * @since 3.0
+	 */
+	public static final String ADD_BLOCK_COMMENT= "net.sourceforge.phpeclipse.ui.actions.AddBlockComment"; //$NON-NLS-1$
+	
+	/**
+	 * Source menu: name of standard Uncomment global action
+	 * (value <code>"net.sourceforge.phpdt.ui.actions.RemoveBlockComment"</code>).
+	 * 
+	 * @since 3.0
+	 */
+	public static final String REMOVE_BLOCK_COMMENT= "net.sourceforge.phpeclipse.ui.actions.RemoveBlockComment"; //$NON-NLS-1$
+	
+	/**
+	 * Source menu: name of standard Indent global action
+	 * (value <code>"net.sourceforge.phpdt.ui.actions.Indent"</code>).
+	 * 
+	 * @since 3.0
+	 */
+	public static final String INDENT= "net.sourceforge.phpeclipse.ui.actions.Indent"; //$NON-NLS-1$
+	
   /**
   	 * Source menu: name of standard Shift Rightl action
   	 * (value <code>"net.sourceforge.phpeclipse.phpeditor.ShiftRight"</code>).