GotoMatchingBracket implementiert
[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 =
16                 "net.sourceforge.phpeclipse.phpeditor.comment";
17
18         /**
19          * Value: net.sourceforge.phpeclipse.phpeditor.uncomment
20          */
21         public static final String UNCOMMENT =
22                 "net.sourceforge.phpeclipse.phpeditor.uncomment";
23         
24   /**
25    * Action definition ID of the source -> format action 
26    */
27   public static final String FORMAT= "net.sourceforge.phpeclipse.phpeditor.format"; //$NON-NLS-1$
28
29         /**
30         * Action definition ID of the edit -> content assist proposal action (value
31         * <code>"org.phpeclipse.phpdt.ui.edit.text.php.content.assist. proposals"
32         * </code>).
33                  */
34         public static final String CONTENT_ASSIST_PROPOSALS = 
35         "net.sourceforge.phpeclipse.ui.edit.text.php.content.assist.proposals"; //$NON-NLS-1$
36         
37 }