1 /*******************************************************************************
2 * Copyright (c) 2002 International Business Machines Corp. and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v0.5
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v05.html
9 * IBM Corporation - initial API and implementation
10 ******************************************************************************/
11 package net.sourceforge.phpdt.ui.actions;
14 * Action ids for standard actions, for groups in the menu bar, and
15 * for actions in context menus of PHPDT views.
18 * This class may be instantiated; it is not intended to be subclassed.
23 public class PHPdtActionConstants {
27 * Edit menu: name of standard Show Javadoc global action
28 * (value <code>"org.eclipse.jdt.ui.actions.ShowJavaDoc"</code>).
30 public static final String SHOW_JAVA_DOC= "net.sourceforge.phpeclipse.phpeditor.ShowJavaDoc"; //$NON-NLS-1$
33 * Edit menu: name of standard Code Assist global action
34 * (value <code>"org.phpeclipse.phpdt.ui.actions.ContentAssist"</code>).
36 public static final String CONTENT_ASSIST = "net.sourceforge.phpeclipse.phpeditor.ContentAssist"; //$NON-NLS-1$
41 * Source menu: name of standard Comment global action
42 * (value <code>"net.sourceforge.phpdt.ui.actions.Comment"</code>).
44 public static final String COMMENT = "net.sourceforge.phpeclipse.phpeditor.Comment"; //$NON-NLS-1$
47 * Source menu: name of standard Uncomment global action
48 * (value <code>"net.sourceforge.phpdt.ui.actions.Uncomment"</code>).
50 public static final String UNCOMMENT = "net.sourceforge.phpeclipse.phpeditor.Uncomment"; //$NON-NLS-1$
53 * Source menu: name of standard ToggleComment global action
54 * (value <code>"org.eclipse.jdt.ui.actions.ToggleComment"</code>).
57 public static final String TOGGLE_COMMENT= "net.sourceforge.phpeclipse.ui.actions.ToggleComment"; //$NON-NLS-1$
60 * Source menu: name of standard Comment global action
61 * (value <code>"org.eclipse.jdt.ui.actions.AddBlockComment"</code>).
65 public static final String ADD_BLOCK_COMMENT= "net.sourceforge.phpeclipse.ui.actions.AddBlockComment"; //$NON-NLS-1$
68 * Source menu: name of standard Uncomment global action
69 * (value <code>"org.eclipse.jdt.ui.actions.RemoveBlockComment"</code>).
73 public static final String REMOVE_BLOCK_COMMENT= "net.sourceforge.phpeclipse.ui.actions.RemoveBlockComment"; //$NON-NLS-1$
76 * Source menu: name of standard Indent global action
77 * (value <code>"org.eclipse.jdt.ui.actions.Indent"</code>).
81 public static final String INDENT= "net.sourceforge.phpeclipse.ui.actions.Indent"; //$NON-NLS-1$
84 * Source menu: name of standard Shift Rightl action
85 * (value <code>"net.sourceforge.phpeclipse.phpeditor.ShiftRight"</code>).
87 public static final String SHIFT_RIGHT = "net.sourceforge.phpeclipse.phpeditor.ShiftRight"; //$NON-NLS-1$
90 * Source menu: name of standard Shift Left global action
91 * (value <code>"net.sourceforge.phpeclipse.phpeditor.ShiftLeft"</code>).
93 public static final String SHIFT_LEFT = "net.sourceforge.phpeclipse.phpeditor.ShiftLeft"; //$NON-NLS-1$
96 * Source menu: name of standard Format global action (value <code>"org.
97 * phpeclipse.phpdt.ui.actions.Format"</code>).
99 public static final String FORMAT = "net.sourceforge.phpeclipse.phpeditor.Format"; //$NON-NLS-1$
102 * Source menu: name of standard Convert Line Delimiters To Windows global action
103 * (value <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToWindows"</code>).
105 public static String CONVERT_LINE_DELIMITERS_TO_WINDOWS = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToWindows"; //$NON-NLS-1$
108 * Source menu: name of standard Convert Line Delimiters To UNIX global action
109 * (value <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToUNIX"</code>).
111 public static String CONVERT_LINE_DELIMITERS_TO_UNIX = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToUNIX"; //$NON-NLS-1$
114 * Source menu: name of standardConvert Line Delimiters ToMac global action
115 * (value <code>"org.phpeclipse.phpdt.ui.actions.ConvertLineDelimitersToMac"</code>).
117 public static String CONVERT_LINE_DELIMITERS_TO_MAC = "net.sourceforge.phpeclipse.ui.actions.ConvertLineDelimitersToMac"; //$NON-NLS-1$
120 * Navigate menu: name of standard Open global action
121 * (value <code>"org.phpeclipse.phpdt.ui.actions.Open"</code>).
123 public static final String OPEN = "net.sourceforge.phpeclipse.ui.actions.Open"; //$NON-NLS-1$