Changes:
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / PHPEditorActionDefinitionIds.java
index fb97a56..e18c5da 100644 (file)
@@ -7,31 +7,34 @@ public interface PHPEditorActionDefinitionIds {
    *
    * @since 2.1
    */
-  public static final String GOTO_MATCHING_BRACKET= "net.sourceforge.phpeclipse.ui.edit.text.php.goto.matching.bracket"; //$NON-NLS-1$
+  public static final String GOTO_MATCHING_BRACKET = "net.sourceforge.phpeclipse.ui.edit.text.php.goto.matching.bracket"; //$NON-NLS-1$
 
-       /**
-        * Value: net.sourceforge.phpeclipse.phpeditor.comment
-        */
-       public static final String COMMENT =
-               "net.sourceforge.phpeclipse.phpeditor.comment";
+  /**
+   * Value: net.sourceforge.phpeclipse.phpeditor.comment
+   */
+  public static final String COMMENT = "net.sourceforge.phpeclipse.phpeditor.comment";
+
+  /**
+   * Value: net.sourceforge.phpeclipse.phpeditor.uncomment
+   */
+  public static final String UNCOMMENT = "net.sourceforge.phpeclipse.phpeditor.uncomment";
 
-       /**
-        * Value: net.sourceforge.phpeclipse.phpeditor.uncomment
-        */
-       public static final String UNCOMMENT =
-               "net.sourceforge.phpeclipse.phpeditor.uncomment";
-       
   /**
    * Action definition ID of the source -> format action 
    */
-  public static final String FORMAT= "net.sourceforge.phpeclipse.phpeditor.format"; //$NON-NLS-1$
+  public static final String FORMAT = "net.sourceforge.phpeclipse.phpeditor.format"; //$NON-NLS-1$
+
+  /**
+  * Action definition ID of the edit -> content assist proposal action (value
+  * <code>"org.phpeclipse.phpdt.ui.edit.text.php.content.assist. proposals"
+  * </code>).
+        */
+  public static final String CONTENT_ASSIST_PROPOSALS = "net.sourceforge.phpeclipse.ui.edit.text.php.content.assist.proposals"; //$NON-NLS-1$
+  
+  /**
+        * Action definition ID of the edit -> show Javadoc action
+        * (value <code>"org.eclipse.jdt.ui.edit.text.java.show.javadoc"</code>).
+        */
+  public static final String SHOW_JAVADOC = "net.sourceforge.phpeclipse.ui.edit.text.java.show.javadoc"; //$NON-NLS-1$
 
-       /**
-       * Action definition ID of the edit -> content assist proposal action (value
-       * <code>"org.phpeclipse.phpdt.ui.edit.text.php.content.assist. proposals"
-       * </code>).
-                */
-       public static final String CONTENT_ASSIST_PROPOSALS = 
-        "net.sourceforge.phpeclipse.ui.edit.text.php.content.assist.proposals"; //$NON-NLS-1$
-       
 }