blob: 57f92d69273dd146b1573f84ec2b3c7e5ff95230 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 IBM Corporation and others.
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// which accompanies this distribution, and is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// Contributors:
// IBM Corporation - initial implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.rcp.ui.actions;
/**
* Defines the menu and toolbar paths for adding actions.
*
* @author Kelvin Low
* @since 1.0
*/
public class ActionConstants {
/**
* File > New menu group name for adding New actions
*/
public static final String NEW = "new"; //$NON-NLS-1$
/**
* File > Open menu group name for adding Open actions
*/
public static final String OPEN = "open"; //$NON-NLS-1$
/**
* Search menu group names for adding Search actions
*/
public static final String SEARCH = "search"; //$NON-NLS-1$
public static final String SEARCH_START = "searchStart"; //$NON-NLS-1$
public static final String SEARCH_END = "searchEnd"; //$NON-NLS-1$
}