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