/*******************************************************************************
* Copyright (c) 2000, 2007 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 API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.ui.editor.actions;
/**
* PDEActionConstants
*
*/
public class PDEActionConstants {
// action IDs
public static final String OPEN = "org.eclipse.pde.ui.actions.Open"; //$NON-NLS-1$
public static final String FORMAT = "org.eclipse.pde.ui.actions.Format"; //$NON-NLS-1$
// command IDs
public static final String DEFN_FORMAT = "org.eclipse.pde.ui.edit.text.format"; //$NON-NLS-1$
public static final String COMMAND_ID_QUICK_OUTLINE = "org.eclipse.pde.ui.quickOutline"; //$NON-NLS-1$
}
|