A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ui / actions / PHPEditorActionDefinitionIds.java
1 package net.sourceforge.phpdt.ui.actions;
2
3 public interface PHPEditorActionDefinitionIds {
4         /**
5          * Value: net.sourceforge.phpeclipse.phpeditor.comment
6          */
7         public static final String COMMENT = "net.sourceforge.phpdt.ui.actions.comment";
8
9         /**
10          * Value: net.sourceforge.phpeclipse.phpeditor.uncomment
11          */
12         public static final String UNCOMMENT = "net.sourceforge.phpdt.ui.actions.uncomment";
13
14         // navigate
15
16         /**
17          * Action definition ID of the navigate -> open action (value
18          * <code>"org.phpeclipse.phpdt.ui.edit.text.php.open.editor"</code>).
19          */
20         public static final String OPEN_EDITOR = "net.sourceforge.phpeclipse.ui.edit.text.java.open.editor"; //$NON-NLS-1$
21
22         /**
23          * Action definition ID of the toggle presentation toolbar button action
24          * (value
25          * <code>"net.sourceforge.phpdt.ui.edit.text.java.toggle.presentation"</code>).
26          */
27         public static final String TOGGLE_PRESENTATION = "net.sourceforge.phpeclipse.ui.edit.text.java.toggle.presentation"; //$NON-NLS-1$
28
29         /**
30          * Action definition ID of the toggle text hover toolbar button action
31          * (value
32          * <code>"net.sourceforge.phpdt.ui.edit.text.java.toggle.text.hover"</code>).
33          */
34         public static final String TOGGLE_TEXT_HOVER = "net.sourceforge.phpeclipse.ui.edit.text.java.toggle.text.hover"; //$NON-NLS-1$
35
36         /**
37          * Action definition ID of the edit -> show Javadoc action (value
38          * <code>"net.sourceforge.phpdt.ui.edit.text.java.show.javadoc"</code>).
39          */
40         public static final String SHOW_JAVADOC = "net.sourceforge.phpeclipse.ui.edit.text.java.show.javadoc"; //$NON-NLS-1$
41
42 }