blob: 6091eca461e4a88aad05493ac64759bf785ad0ff [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2004 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.jst.ejb.ui.internal.wizard;
import org.eclipse.jst.j2ee.application.internal.operations.J2EEModuleImportDataModel;
import org.eclipse.jst.j2ee.internal.ejb.archiveoperations.EJBModuleImportOperation;
import org.eclipse.jst.j2ee.internal.ejb.project.operations.EJBModuleImportDataModel;
import org.eclipse.jst.j2ee.internal.plugin.J2EEUIMessages;
import org.eclipse.jst.j2ee.internal.plugin.J2EEUIPlugin;
import org.eclipse.jst.j2ee.internal.plugin.J2EEUIPluginIcons;
import org.eclipse.jst.j2ee.internal.wizard.J2EEModuleImportWizard;
import org.eclipse.wst.common.frameworks.internal.operations.WTPOperation;
import org.eclipse.wst.common.frameworks.internal.operations.WTPOperationDataModel;
/**
* <p>
* Wizard used to import J2EE Enterprise Java Bean module
* structures into the Eclipse Workbench from an existing
* Enteprise Java Bean *.jar file.
* </p>
*/
public final class EJBModuleImportWizard extends J2EEModuleImportWizard {
/**
* <p>
* The default constructor. Creates a wizard with no selection,
* no model instance, and no operation instance. The model and
* operation will be created as needed.
* </p>
*/
public EJBModuleImportWizard() {
super();
}
/**
* <p>
* The model is used to prepopulate the wizard controls
* and interface with the operation.
* </p>
* @param model The model parameter is used to pre-populate wizard controls and interface with the operation
*/
public EJBModuleImportWizard(EJBModuleImportDataModel model) {
super(model);
}
/**
* <p>
* Overridden to return an {@link EJBModuleImportWizard} and defaults
* the value of {@link J2EEModuleImportDataModel#ADD_TO_EAR} to <b>true</b>.
* </p>
*
* @see org.eclipse.wst.common.frameworks.internal.ui.wizard.WTPWizard#createDefaultModel()
*/
protected WTPOperationDataModel createDefaultModel() {
EJBModuleImportDataModel aModel = new EJBModuleImportDataModel();
aModel.setBooleanProperty(J2EEModuleImportDataModel.ADD_TO_EAR, true);
return aModel;
}
/**
* <p>
* Adds an {@link EJBImportPage} as the main wizard page ({@link #MAIN_PG}).
* </p>
*/
public void doAddPages() {
addPage(new EJBImportPage((J2EEModuleImportDataModel)getModel(), MAIN_PG));
}
/**
* {@inheritDoc}
*
* <p>
* Sets up the dialog window title and default wizard page image.
* </p>
*/
public final void doInit() {
setWindowTitle(J2EEUIMessages.getResourceString(J2EEUIMessages.IMPORT_WIZ_TITLE));
setDefaultPageImageDescriptor(J2EEUIPlugin.getDefault().getImageDescriptor(J2EEUIPluginIcons.EJB_IMPORT_WIZARD_BANNER));
updateEARToModelFromSelection(getSpecificDataModel());
}
protected WTPOperation getImportOperation() {
return new EJBModuleImportOperation(getSpecificDataModel());
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jst.j2ee.internal.ui.wizard.J2EEModuleImportWizard#getModuleValidatorStrings()
*/
protected String[] getModuleValidatorStrings() {
return new String[]{"org.eclipse.jst.j2ee.model.internal.validation.EJBValidator"}; //$NON-NLS-1$
}
private EJBModuleImportDataModel getSpecificDataModel() {
return (EJBModuleImportDataModel)getModel();
}
}