blob: 7cceff0108fdb96361f8547de2ac01e038512c6a [file] [log] [blame]
/***************************************************************************************************
* Copyright (c) 2005 Eteration A.S. 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
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors: Eteration A.S. - initial API and implementation
**************************************************************************************************/
package org.eclipse.jst.j2ee.ejb.annotation.ui.internal.wizards;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.jem.util.emf.workbench.ProjectUtilities;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jst.j2ee.internal.plugin.J2EEUIPlugin;
import org.eclipse.jst.j2ee.internal.project.J2EEProjectUtilities;
import org.eclipse.ui.INewWizard;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
import org.eclipse.wst.common.frameworks.internal.datamodel.ui.DataModelWizard;
public abstract class NewEjbWizard extends DataModelWizard implements INewWizard {
/**
* @param model
*/
public NewEjbWizard(IDataModel model) {
super(model);
}
/**
* Default constructor
*/
public NewEjbWizard() {
super();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.IWorkbenchWizard#init(org.eclipse.ui.IWorkbench,
* org.eclipse.jface.viewers.IStructuredSelection)
*/
public void init(IWorkbench workbench, IStructuredSelection selection) {
}
protected IProject getDefaultEjbProject() {
IProject project = null;
IStructuredSelection selection = getCurrentSelection();
if (selection != null && selection.getFirstElement() != null) {
project = ProjectUtilities.getProject(selection.getFirstElement());
if(project == null && selection.getFirstElement() instanceof IAdaptable){
IResource res= (IResource) ((IAdaptable) selection.getFirstElement()).getAdapter(IResource.class);
if(res != null)
project = res.getProject();
}
}
if (project == null) {
IProject[] projects = ProjectUtilities.getAllProjects();
for (int i = 0; i < projects.length; i++) {
if (J2EEProjectUtilities.isEJBProject(projects[i]))
project = projects[i];
}
}
return project;
}
protected IStructuredSelection getCurrentSelection() {
IWorkbenchWindow window = J2EEUIPlugin.getDefault().getWorkbench().getActiveWorkbenchWindow();
if (window != null) {
ISelection selection = window.getSelectionService().getSelection();
if (selection instanceof IStructuredSelection) {
return (IStructuredSelection) selection;
}
}
return null;
}
}