fix some navigation action labels
[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          * Action definition ID of the edit -> go to next member action
15          * (value <code>"net.sourceforge.phpdt.ui.edit.text.java.goto.next.member"</code>).
16          *
17          * @since 2.1
18          */
19         public static final String GOTO_NEXT_MEMBER= "net.sourceforge.phpeclipse.ui.edit.text.php.goto.next.member"; //$NON-NLS-1$
20
21         /**
22          * Action definition ID of the edit -> go to previous member action
23          * (value <code>"net.sourceforge.phpdt.ui.edit.text.java.goto.previous.member"</code>).
24          *
25          * @since 2.1
26          */
27         public static final String GOTO_PREVIOUS_MEMBER= "net.sourceforge.phpeclipse.ui.edit.text.php.goto.previous.member"; //$NON-NLS-1$
28
29   /**
30    * Value: net.sourceforge.phpeclipse.phpeditor.comment
31    */
32   public static final String COMMENT = "net.sourceforge.phpeclipse.phpeditor.comment";
33
34   /**
35    * Value: net.sourceforge.phpeclipse.phpeditor.uncomment
36    */
37   public static final String UNCOMMENT = "net.sourceforge.phpeclipse.phpeditor.uncomment";
38   /**
39          * Action definition ID of the source -> toggle comment action
40          * (value <code>"net.sourceforge.phpdt.ui.edit.text.java.toggle.comment"</code>).
41          * @since 3.0
42          */
43         public static final String TOGGLE_COMMENT= "net.sourceforge.phpeclipse.phpeditor.toggle.comment"; //$NON-NLS-1$
44         
45
46         /**
47          * Action definition ID of the source -> add block comment action
48          * (value <code>"net.sourceforge.phpdt.ui.edit.text.java.add.block.comment"</code>).
49          * @since 3.0
50          */
51         public static final String ADD_BLOCK_COMMENT= "net.sourceforge.phpeclipse.phpeditor.add.block.comment"; //$NON-NLS-1$
52
53         /**
54          * Action definition ID of the source -> remove block comment action
55          * (value <code>"net.sourceforge.phpdt.ui.edit.text.java.remove.block.comment"</code>).
56          * @since 3.0
57          */
58         public static final String REMOVE_BLOCK_COMMENT= "net.sourceforge.phpeclipse.phpeditor.remove.block.comment"; //$NON-NLS-1$
59         
60         /**
61          * Action definition ID of the source -> indent action
62          * (value <code>"net.sourceforge.phpdt.ui.edit.text.java.indent"</code>).
63          */
64         public static final String INDENT= "net.sourceforge.phpeclipse.phpeditor.indent"; //$NON-NLS-1$
65         
66   /**
67    * Action definition ID of the source -> format action 
68    */
69   public static final String FORMAT = "net.sourceforge.phpeclipse.phpeditor.format"; //$NON-NLS-1$
70
71   /**
72   * Action definition ID of the edit -> content assist proposal action (value
73   * <code>"org.phpeclipse.phpdt.ui.edit.text.php.content.assist. proposals"
74   * </code>).
75          */
76 //  public static final String CONTENT_ASSIST_PROPOSALS = "net.sourceforge.phpeclipse.ui.edit.text.php.content.assist.proposals"; //$NON-NLS-1$
77   
78 }