KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > activities > ws > WorkbenchTriggerPoints


1 /*******************************************************************************
2  * Copyright (c) 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.activities.ws;
12
13 /**
14  * @since 3.1
15  */

16 public interface WorkbenchTriggerPoints {
17
18     /**
19      * New wizard trigger point identifier. Value <code>org.eclipse.ui.newWizards</code>.
20      */

21     public static final String JavaDoc NEW_WIZARDS = "org.eclipse.ui.newWizards"; //$NON-NLS-1$
22

23     /**
24      * Perspective opening trigger point identifier. Value <code>org.eclipse.ui.openPerspectiveDialog</code>.
25      */

26     public static final String JavaDoc OPEN_PERSPECITVE_DIALOG = "org.eclipse.ui.openPerspectiveDialog"; //$NON-NLS-1$
27

28     /**
29      * Import wizards trigger point identifier. Value <code>org.eclipse.ui.importWizards</code>.
30      */

31     public static final String JavaDoc IMPORT_WIZARDS = "org.eclipse.ui.importWizards"; //$NON-NLS-1$
32

33     /**
34      * Export wizards trigger point identifier. Value <code>org.eclipse.ui.exportWizards</code>.
35      */

36     public static final String JavaDoc EXPORT_WIZARDS = "org.eclipse.ui.exportWizards"; //$NON-NLS-1$
37

38 }
39
Popular Tags