blob: 7260f059caf396d9d142ce5913948223b8939215 [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.wst.web.ui.internal.actions;
import org.eclipse.jface.action.IAction;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
import org.eclipse.wst.css.ui.internal.wizard.NewCSSWizard;
public class OpenCSSWizardAction extends AbstractOpenWizardAction implements
IWorkbenchWindowActionDelegate
{
public void run( IAction action )
{
openWizardDialog( new NewCSSWizard() );
}
}