blob: b25aaf1e7f6bb416d7395bd9cc5c219c093a9a03 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 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
*******************************************************************************/
package org.eclipse.ui.ide.undo;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.ui.internal.ide.undo.ProjectDescription;
/**
* A CreateProjectOperation represents an undoable operation for creating a
* project in the workspace. Clients may call the public API from a background
* thread.
*
* This class is intended to be instantiated and used by clients. It is not
* intended to be subclassed by clients.
*
* @since 3.3
*
*/
public class CreateProjectOperation extends AbstractCreateResourcesOperation {
/**
* Create a CreateProjectOperation
*
* @param projectDescription
* the project to be created
* @param label
* the label of the operation
*/
public CreateProjectOperation(IProjectDescription projectDescription,
String label) {
super(new ProjectDescription[] { new ProjectDescription(
projectDescription) }, label);
}
}