blob: 87f9c6f31e3e454c94a61a4009501ffa7216af82 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.jdt.ui.actions;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.INewWizard;
import org.eclipse.ui.PlatformUI;
import org.eclipse.jdt.ui.wizards.NewClassWizardPage;
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
import org.eclipse.jdt.internal.ui.actions.ActionMessages;
import org.eclipse.jdt.internal.ui.wizards.NewClassCreationWizard;
/**
* <p>Action that opens the new class wizard. The action initialized the wizard with either the selection
* as configured by {@link #setSelection(IStructuredSelection)} or takes a preconfigured
* new class wizard page, see {@link #setConfiguredWizardPage(NewClassWizardPage)}.</p>
*
* <p>
* This class may be instantiated; it is not intended to be subclassed.
* </p>
*
* @since 3.2
*/
public class OpenNewClassWizardAction extends AbstractOpenWizardAction {
private NewClassWizardPage fPage;
/**
* Creates an instance of the <code>OpenNewClassWizardAction</code>.
*/
public OpenNewClassWizardAction() {
setText(ActionMessages.OpenNewClassWizardAction_text);
setDescription(ActionMessages.OpenNewClassWizardAction_description);
setToolTipText(ActionMessages.OpenNewClassWizardAction_tooltip);
setImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.OPEN_CLASS_WIZARD_ACTION);
fPage= null;
}
/**
* Sets a page to be used by the wizard or <code>null</code> to use a page initialized with values
* from the current selection (see {@link #getSelection()} and {@link #setSelection(IStructuredSelection)}).
* @param page the page to use or <code>null</code>
*/
public void setConfiguredWizardPage(NewClassWizardPage page) {
fPage= page;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.ui.actions.AbstractOpenWizardAction#createWizard()
*/
protected final INewWizard createWizard() throws CoreException {
return new NewClassCreationWizard(fPage);
}
}