/*******************************************************************************
* Copyright (c) 2014 Mentor Graphics and others.
* 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
*
* Contributors:
* Mentor Graphics - initial API and implementation
*******************************************************************************/
package com.codesourcery.installer.ui;
/**
* General install wizard page names
*/
public interface IInstallPages {
/** Welcome page name */
public static final String WELCOME_PAGE = "welcomePage";
/** License page name */
public static final String LICENSE_PAGE = "licensePage";
/** Information page name */
public static final String INFORMATION_PAGE = "informationPage";
/** Install folder page name */
public static final String INSTALL_FOLDER_PAGE = "installFolderPage";
/** Components page name */
public static final String COMPONENTS_PAGE = "componentsPage";
/** Short-cuts page name */
public static final String SHORTCUTS_PAGE = "shortcutsPage";
/** Paths page name */
public static final String PATHS_PAGE = "pathsPage";
/** Setup page name */
public static final String SETUP_PAGE = "setupPage";
/** Mirror page name */
public static final String MIRROR_PAGE = "mirrorPage";
}