blob: b91339860dd0c20cf1626616f17d6886dbe5770d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 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.wst.xsd.ui.internal.actions;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.wst.xsd.ui.internal.commands.SetTypeCommand;
import org.eclipse.xsd.XSDConcreteComponent;
public class SetTypeAction extends AbstractAction
{
int typeKind;
SetTypeCommand command;
public SetTypeAction(String text, ImageDescriptor image, XSDConcreteComponent xsdConcreteComponent)
{
super(text, image, xsdConcreteComponent);
command = new SetTypeCommand(xsdConcreteComponent);
}
public SetTypeAction(String text, XSDConcreteComponent xsdConcreteComponent)
{
super(text, xsdConcreteComponent);
command = new SetTypeCommand(xsdConcreteComponent);
}
public void setTypeKind(int type)
{
this.typeKind = type;
command.setTypeKind(type);
}
public void run()
{
beginRecording(getText());
command.run();
endRecording();
}
}