/**
* Copyright (c) 2005-2008 Aptana, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html. If redistributing this code,
* this entire header must remain intact.
*/
package com.aptana.ide.intro.actions;
/**
* @author Kevin Sawicki (ksawicki@aptana.com)
*/
public class ParameterConstants
{
/**
* PREFERENCE_ID
*/
public static final String PREFERENCE_ID = "preferenceId"; //$NON-NLS-1$
/**
* PLUGIN_PREFERENCE_ID
*/
public static final String PLUGIN_PREFERENCE_ID = "pluginPreferenceId"; //$NON-NLS-1$
/**
* DISPLAYED_ID
*/
public static final String DISPLAYED_ID = "displayId"; //$NON-NLS-1$
/**
* VIEW_ID
*/
public static final String VIEW_ID = "viewId"; //$NON-NLS-1$
/**
* WIZARD_ID
*/
public static final String WIZARD_ID = "wizardId"; //$NON-NLS-1$
/**
* ERROR_MESSAGE
*/
public static final String ERROR_MESSAGE = "errorMessage"; //$NON-NLS-1$
/**
* WIZARD_TYPE
*/
public static final String WIZARD_TYPE = "wizardType"; //$NON-NLS-1$
/**
* IMPORT_WIZARD_TYPE
*/
public static final String IMPORT_WIZARD_TYPE = "import"; //$NON-NLS-1$
/**
* EXPORT_WIZARD_TYPE
*/
public static final String EXPORT_WIZARD_TYPE = "export"; //$NON-NLS-1$
/**
* NEW_WIZARD_TYPE
*/
public static final String NEW_WIZARD_TYPE = "new"; //$NON-NLS-1$
}