/******************************************************************************* * Copyright (c) 2000, 2009 IBM Corporation 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: * IBM Corporation - initial API and implementation * Jakub Jurkiewicz <jakub.jurkiewicz@gmail.com> - Fix for Bug 174737 * [IDE] New Plug-in Project wizard status handling is inconsistent * Oakland Software Incorporated (Francis Upton) <francisu@ieee.org> * Bug 224997 [Workbench] Impossible to copy project *******************************************************************************/ package org.eclipse.ui.dialogs;
/** * Standard main page for a wizard that is creates a project resource. * <p> * This page may be used by clients as-is; it may be also be subclassed to suit. * </p> * <p> * Example usage: * <pre> * mainPage = new WizardNewProjectCreationPage("basicNewProjectPage"); * mainPage.setTitle("Project"); * mainPage.setDescription("Create a new project resource."); * </pre> * </p> */ publicclassWizardNewProjectCreationPageextendsWizardPage {
// initial value stores private String initialProjectFieldValue;
1. ProgrammingLanguagesAreforPeople. 2. DesignforYourselfandYourFriends. 3. Give the Programmer as MuchControl as Possible. 4. AimforBrevity. 5. AdmitWhatHackingIs.