01: /*******************************************************************************
02: * Copyright (c) 2005 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.ui.internal.activities.ws;
11:
12: /**
13: * @since 3.1
14: */
15: public interface WorkbenchTriggerPoints {
16:
17: /**
18: * New wizard trigger point identifier. Value <code>org.eclipse.ui.newWizards</code>.
19: */
20: public static final String NEW_WIZARDS = "org.eclipse.ui.newWizards"; //$NON-NLS-1$
21:
22: /**
23: * Perspective opening trigger point identifier. Value <code>org.eclipse.ui.openPerspectiveDialog</code>.
24: */
25: public static final String OPEN_PERSPECITVE_DIALOG = "org.eclipse.ui.openPerspectiveDialog"; //$NON-NLS-1$
26:
27: /**
28: * Import wizards trigger point identifier. Value <code>org.eclipse.ui.importWizards</code>.
29: */
30: public static final String IMPORT_WIZARDS = "org.eclipse.ui.importWizards"; //$NON-NLS-1$
31:
32: /**
33: * Export wizards trigger point identifier. Value <code>org.eclipse.ui.exportWizards</code>.
34: */
35: public static final String EXPORT_WIZARDS = "org.eclipse.ui.exportWizards"; //$NON-NLS-1$
36:
37: }
|