2a236abd53e562fed0c736e440fa0edc7b3b79cc
[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          * Value: net.sourceforge.phpeclipse.phpeditor.comment
6          */
7         public static final String COMMENT =
8                 "net.sourceforge.phpeclipse.phpeditor.comment";
9
10         /**
11          * Value: net.sourceforge.phpeclipse.phpeditor.uncomment
12          */
13         public static final String UNCOMMENT =
14                 "net.sourceforge.phpeclipse.phpeditor.uncomment";
15         
16   /**
17    * Action definition ID of the source -> format action 
18    */
19   public static final String FORMAT= "net.sourceforge.phpeclipse.phpeditor.format"; //$NON-NLS-1$
20
21         /**
22         * Action definition ID of the edit -> content assist proposal action (value
23         * <code>"org.phpeclipse.phpdt.ui.edit.text.php.content.assist. proposals"
24         * </code>).
25                  */
26         public static final String CONTENT_ASSIST_PROPOSALS = 
27         "net.sourceforge.phpeclipse.ui.edit.text.php.content.assist.proposals"; //$NON-NLS-1$
28         
29 }