01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 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.wizards.datatransfer;
11:
12: import org.eclipse.ui.PlatformUI;
13:
14: /**
15: * Help context ids for the data transfer wizards.
16: * <p>
17: * This interface contains constants only; it is not intended to be implemented
18: * or extended.
19: * </p>
20: *
21: */
22: public interface IDataTransferHelpContextIds {
23: public static final String PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
24:
25: // Wizard pages
26: public static final String FILE_SYSTEM_EXPORT_WIZARD_PAGE = PREFIX
27: + "file_system_export_wizard_page"; //$NON-NLS-1$
28:
29: public static final String FILE_SYSTEM_IMPORT_WIZARD_PAGE = PREFIX
30: + "file_system_import_wizard_page"; //$NON-NLS-1$
31:
32: public static final String ZIP_FILE_EXPORT_WIZARD_PAGE = PREFIX
33: + "zip_file_export_wizard_page"; //$NON-NLS-1$
34:
35: public static final String ZIP_FILE_IMPORT_WIZARD_PAGE = PREFIX
36: + "zip_file_import_wizard_page"; //$NON-NLS-1$
37: }
|