blob: 83dba829441478b694474714c1e8e88a5e3f6517 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2005 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.gmf.runtime.emf.type.core.commands;
import org.eclipse.gmf.runtime.emf.type.core.IElementType;
import org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest;
/**
* Edit command to configure a new model element with the characteristics of its
* element type.
*
* @author ldamus
*/
public abstract class ConfigureElementCommand
extends EditElementCommand {
/**
* The element type.
*/
private final IElementType elementType;
/**
* Constructs a new element configuration command for the
* <code>request</code>.
*
* @param request
* the element configuration request
*/
public ConfigureElementCommand(ConfigureRequest request) {
super(request.getLabel(), request.getElementToConfigure(), request);
this.elementType = request.getTypeToConfigure();
}
/**
* Gets the element type.
*
* @return the element type
*/
public IElementType getElementType() {
return elementType;
}
}