6605410f1714728692d0ab0509e2c7e539b4789c
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / PHPEditorActionDefinitionIds.java
1 package net.sourceforge.phpeclipse.phpeditor;
2
3 import org.eclipse.ui.texteditor.ITextEditorActionDefinitionIds;
4
5 public interface PHPEditorActionDefinitionIds  extends ITextEditorActionDefinitionIds {
6   /**
7    * Action definition ID of the edit -> go to matching bracket action
8    * (value <code>"org.phpeclipse.phpdt.ui.edit.text.php.goto.matching.bracket"</code>).
9    *
10    * @since 2.1
11    */
12   public static final String GOTO_MATCHING_BRACKET = "net.sourceforge.phpeclipse.ui.edit.text.php.goto.matching.bracket"; //$NON-NLS-1$
13
14   /**
15    * Value: net.sourceforge.phpeclipse.phpeditor.comment
16    */
17   public static final String COMMENT = "net.sourceforge.phpeclipse.phpeditor.comment";
18
19   /**
20    * Value: net.sourceforge.phpeclipse.phpeditor.uncomment
21    */
22   public static final String UNCOMMENT = "net.sourceforge.phpeclipse.phpeditor.uncomment";
23   /**
24          * Action definition ID of the source -> toggle comment action
25          * (value <code>"org.eclipse.jdt.ui.edit.text.java.toggle.comment"</code>).
26          * @since 3.0
27          */
28         public static final String TOGGLE_COMMENT= "net.sourceforge.phpeclipse.phpeditor.toggle.comment"; //$NON-NLS-1$
29         
30
31         /**
32          * Action definition ID of the source -> add block comment action
33          * (value <code>"org.eclipse.jdt.ui.edit.text.java.add.block.comment"</code>).
34          * @since 3.0
35          */
36         public static final String ADD_BLOCK_COMMENT= "net.sourceforge.phpeclipse.phpeditor.add.block.comment"; //$NON-NLS-1$
37
38         /**
39          * Action definition ID of the source -> remove block comment action
40          * (value <code>"org.eclipse.jdt.ui.edit.text.java.remove.block.comment"</code>).
41          * @since 3.0
42          */
43         public static final String REMOVE_BLOCK_COMMENT= "net.sourceforge.phpeclipse.phpeditor.remove.block.comment"; //$NON-NLS-1$
44         
45         /**
46          * Action definition ID of the source -> indent action
47          * (value <code>"org.eclipse.jdt.ui.edit.text.java.indent"</code>).
48          */
49         public static final String INDENT= "net.sourceforge.phpeclipse.phpeditor.indent"; //$NON-NLS-1$
50         
51   /**
52    * Action definition ID of the source -> format action 
53    */
54   public static final String FORMAT = "net.sourceforge.phpeclipse.phpeditor.format"; //$NON-NLS-1$
55
56   /**
57   * Action definition ID of the edit -> content assist proposal action (value
58   * <code>"org.phpeclipse.phpdt.ui.edit.text.php.content.assist. proposals"
59   * </code>).
60          */
61 //  public static final String CONTENT_ASSIST_PROPOSALS = "net.sourceforge.phpeclipse.ui.edit.text.php.content.assist.proposals"; //$NON-NLS-1$
62   
63   
64 }