Changes:
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / PHPEditorActionDefinitionIds.java
1 package net.sourceforge.phpeclipse.phpeditor;
2
3 public interface PHPEditorActionDefinitionIds {
4   /**
5    * Action definition ID of the edit -> go to matching bracket action
6    * (value <code>"org.phpeclipse.phpdt.ui.edit.text.php.goto.matching.bracket"</code>).
7    *
8    * @since 2.1
9    */
10   public static final String GOTO_MATCHING_BRACKET = "net.sourceforge.phpeclipse.ui.edit.text.php.goto.matching.bracket"; //$NON-NLS-1$
11
12   /**
13    * Value: net.sourceforge.phpeclipse.phpeditor.comment
14    */
15   public static final String COMMENT = "net.sourceforge.phpeclipse.phpeditor.comment";
16
17   /**
18    * Value: net.sourceforge.phpeclipse.phpeditor.uncomment
19    */
20   public static final String UNCOMMENT = "net.sourceforge.phpeclipse.phpeditor.uncomment";
21
22   /**
23    * Action definition ID of the source -> format action 
24    */
25   public static final String FORMAT = "net.sourceforge.phpeclipse.phpeditor.format"; //$NON-NLS-1$
26
27   /**
28   * Action definition ID of the edit -> content assist proposal action (value
29   * <code>"org.phpeclipse.phpdt.ui.edit.text.php.content.assist. proposals"
30   * </code>).
31          */
32   public static final String CONTENT_ASSIST_PROPOSALS = "net.sourceforge.phpeclipse.ui.edit.text.php.content.assist.proposals"; //$NON-NLS-1$
33   
34   /**
35          * Action definition ID of the edit -> show Javadoc action
36          * (value <code>"org.eclipse.jdt.ui.edit.text.java.show.javadoc"</code>).
37          */
38   public static final String SHOW_JAVADOC = "net.sourceforge.phpeclipse.ui.edit.text.java.show.javadoc"; //$NON-NLS-1$
39
40 }