1 package net.sourceforge.phpeclipse.phpeditor;
3 import org.eclipse.ui.texteditor.ITextEditorActionDefinitionIds;
5 public interface PHPEditorActionDefinitionIds extends ITextEditorActionDefinitionIds {
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>).
12 public static final String GOTO_MATCHING_BRACKET = "net.sourceforge.phpeclipse.ui.edit.text.php.goto.matching.bracket"; //$NON-NLS-1$
15 * Value: net.sourceforge.phpeclipse.phpeditor.comment
17 public static final String COMMENT = "net.sourceforge.phpeclipse.phpeditor.comment";
20 * Value: net.sourceforge.phpeclipse.phpeditor.uncomment
22 public static final String UNCOMMENT = "net.sourceforge.phpeclipse.phpeditor.uncomment";
24 * Action definition ID of the source -> toggle comment action
25 * (value <code>"org.eclipse.jdt.ui.edit.text.java.toggle.comment"</code>).
28 public static final String TOGGLE_COMMENT= "net.sourceforge.phpeclipse.phpeditor.toggle.comment"; //$NON-NLS-1$
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>).
36 public static final String ADD_BLOCK_COMMENT= "net.sourceforge.phpeclipse.phpeditor.add.block.comment"; //$NON-NLS-1$
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>).
43 public static final String REMOVE_BLOCK_COMMENT= "net.sourceforge.phpeclipse.phpeditor.remove.block.comment"; //$NON-NLS-1$
46 * Action definition ID of the source -> indent action
47 * (value <code>"org.eclipse.jdt.ui.edit.text.java.indent"</code>).
49 public static final String INDENT= "net.sourceforge.phpeclipse.phpeditor.indent"; //$NON-NLS-1$
52 * Action definition ID of the source -> format action
54 public static final String FORMAT = "net.sourceforge.phpeclipse.phpeditor.format"; //$NON-NLS-1$
57 * Action definition ID of the edit -> content assist proposal action (value
58 * <code>"org.phpeclipse.phpdt.ui.edit.text.php.content.assist. proposals"
61 // public static final String CONTENT_ASSIST_PROPOSALS = "net.sourceforge.phpeclipse.ui.edit.text.php.content.assist.proposals"; //$NON-NLS-1$