01: /*******************************************************************************
02: * Copyright (c) 2000, 2007 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.pde.internal.ui.editor.actions;
11:
12: /**
13: * PDEActionConstants
14: *
15: */
16: public class PDEActionConstants {
17:
18: // action IDs
19: public static final String OPEN = "org.eclipse.pde.ui.actions.Open"; //$NON-NLS-1$
20: public static final String FORMAT = "org.eclipse.pde.ui.actions.Format"; //$NON-NLS-1$
21:
22: // command IDs
23: public static final String DEFN_FORMAT = "org.eclipse.pde.ui.edit.text.format"; //$NON-NLS-1$
24: public static final String COMMAND_ID_QUICK_OUTLINE = "org.eclipse.pde.ui.quickOutline"; //$NON-NLS-1$
25:
26: }
|