/******************************************************************************* * Copyright (c) 2002 International Business Machines Corp. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v0.5 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v05.html * * Contributors: * IBM Corporation - initial API and implementation ******************************************************************************/ package net.sourceforge.phpdt.ui.actions; /** * Action ids for standard actions, for groups in the menu bar, and * for actions in context menus of PHPDT views. * *
* This class may be instantiated; it is not intended to be subclassed. *
* * @since 2.0 */ public class PHPdtActionConstants { // Source menu /** * Source menu: name of standard Comment global action * (value"net.sourceforge.phpdt.ui.actions.Comment"
).
*/
public static final String COMMENT= "net.sourceforge.phpdt.ui.actions.Comment"; //$NON-NLS-1$
/**
* Source menu: name of standard Uncomment global action
* (value "net.sourceforge.phpdt.ui.actions.Uncomment"
).
*/
public static final String UNCOMMENT= "net.sourceforge.phpdt.ui.actions.Uncomment"; //$NON-NLS-1$
}