/******************************************************************************* * Copyright (c) 2010 Neil Bartlett. * 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: * Neil Bartlett - initial API and implementation *******************************************************************************/ package bndtools.javamodel; import org.eclipse.core.resources.IResource; import org.eclipse.jdt.core.IJavaProject; import org.eclipse.jdt.core.JavaCore; import org.eclipse.jface.operation.IRunnableContext; import org.eclipse.ui.forms.AbstractFormPart; import org.eclipse.ui.forms.IManagedForm; import org.eclipse.ui.forms.editor.IFormPage; import org.eclipse.ui.ide.ResourceUtil; public class FormPartJavaSearchContext implements IJavaSearchContext { private AbstractFormPart formPart; public FormPartJavaSearchContext(AbstractFormPart formPart) { this.formPart = formPart; } public IJavaProject getJavaProject() { IFormPage page = getFormPage(); if (page == null) return null; IResource resource = ResourceUtil.getResource(page.getEditorInput()); if (resource == null) return null; return JavaCore.create(resource.getProject()); } private IFormPage getFormPage() { IManagedForm managedForm = formPart.getManagedForm(); if (managedForm == null) return null; Object container = managedForm.getContainer(); if (!(container instanceof IFormPage)) return null; return (IFormPage) container; } public IRunnableContext getRunContext() { IFormPage page = getFormPage(); if (page == null) return null; return page.getEditorSite().getWorkbenchWindow(); } }