blob: 3cd9f1ee1ca996375ab254b3728a089cd841ee5e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.wizards;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.ui.wizards.NewClassWizardPage;
import org.eclipse.jdt.internal.ui.JavaPlugin;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
public class NewClassCreationWizard extends NewElementWizard {
private NewClassWizardPage fPage;
private boolean fOpenEditorOnFinish;
public NewClassCreationWizard(NewClassWizardPage page, boolean openEditorOnFinish) {
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
setWindowTitle(NewWizardMessages.NewClassCreationWizard_title);
fPage= page;
fOpenEditorOnFinish= openEditorOnFinish;
}
public NewClassCreationWizard() {
this(null, true);
}
/*
* @see Wizard#createPages
*/
@Override
public void addPages() {
super.addPages();
if (fPage == null) {
fPage= new NewClassWizardPage();
fPage.setWizard(this);
fPage.init(getSelection());
}
addPage(fPage);
}
@Override
protected boolean canRunForked() {
return !fPage.isEnclosingTypeSelected();
}
@Override
protected void finishPage(IProgressMonitor monitor) throws InterruptedException, CoreException {
fPage.createType(monitor); // use the full progress monitor
}
@Override
public boolean performFinish() {
warnAboutTypeCommentDeprecation();
boolean res= super.performFinish();
if (res) {
IResource resource= fPage.getModifiedResource();
if (resource != null) {
selectAndReveal(resource);
if (fOpenEditorOnFinish) {
openResource((IFile) resource);
}
}
}
return res;
}
@Override
public IJavaElement getCreatedElement() {
return fPage.getCreatedType();
}
}