package org.jbpm.gd.jpdl.properties;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetPage;
import org.jbpm.gd.common.notation.AbstractNotationElement;
import org.jbpm.gd.common.part.NotationElementGraphicalEditPart;
import org.jbpm.gd.common.part.OutlineEditPart;
import org.jbpm.gd.common.properties.AbstractPropertySection;
import org.jbpm.gd.jpdl.model.Assignable;
public class AssignmentSection extends AbstractPropertySection {
private AssignmentConfigurationComposite assignmentConfigurationComposite;
private Assignable assignable;
public void createControls(Composite parent,
TabbedPropertySheetPage aTabbedPropertySheetPage) {
super.createControls(parent, aTabbedPropertySheetPage);
Composite clientArea = getWidgetFactory().createFlatFormComposite(parent);
assignmentConfigurationComposite = AssignmentConfigurationComposite.create(getWidgetFactory(), clientArea);
}
public void setInput(IWorkbenchPart part, ISelection selection) {
super.setInput(part, selection);
if (!(selection instanceof IStructuredSelection)) return;
Object input = ((IStructuredSelection)selection).getFirstElement();
if (input instanceof NotationElementGraphicalEditPart) {
AbstractNotationElement notationElement = ((NotationElementGraphicalEditPart)input).getNotationElement();
input = notationElement.getSemanticElement();
} else if (input instanceof OutlineEditPart) {
input = ((OutlineEditPart)input).getModel();
}
if (input instanceof Assignable) {
setAssignable((Assignable)input);
}
}
private void setAssignable(Assignable assignable) {
this.assignable = assignable;
}
public void refresh() {
if (assignable != null) {
assignmentConfigurationComposite.setAssignable(assignable);
}
}
public boolean shouldUseExtraSpace() {
return true;
}
}