KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > wizards > datatransfer > IDataTransferHelpContextIds


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 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.wizards.datatransfer;
12
13 import org.eclipse.ui.PlatformUI;
14
15 /**
16  * Help context ids for the data transfer wizards.
17  * <p>
18  * This interface contains constants only; it is not intended to be implemented
19  * or extended.
20  * </p>
21  *
22  */

23 public interface IDataTransferHelpContextIds {
24     public static final String JavaDoc PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
25

26     // Wizard pages
27
public static final String JavaDoc FILE_SYSTEM_EXPORT_WIZARD_PAGE = PREFIX
28             + "file_system_export_wizard_page"; //$NON-NLS-1$
29

30     public static final String JavaDoc FILE_SYSTEM_IMPORT_WIZARD_PAGE = PREFIX
31             + "file_system_import_wizard_page"; //$NON-NLS-1$
32

33     public static final String JavaDoc ZIP_FILE_EXPORT_WIZARD_PAGE = PREFIX
34             + "zip_file_export_wizard_page"; //$NON-NLS-1$
35

36     public static final String JavaDoc ZIP_FILE_IMPORT_WIZARD_PAGE = PREFIX
37             + "zip_file_import_wizard_page"; //$NON-NLS-1$
38
}
39
Popular Tags