/******************************************************************************* * Copyright (c) 2011, 2012 Red Hat, Inc. * All rights reserved. * This program is 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: * Red Hat, Inc. - initial API and implementation * * @author Innar Made ******************************************************************************/ package org.eclipse.bpmn2.modeler.ui.property.events; import org.eclipse.bpmn2.BoundaryEvent; import org.eclipse.bpmn2.modeler.core.merrimac.clad.AbstractDetailComposite; import org.eclipse.bpmn2.modeler.core.merrimac.clad.DefaultPropertySection; import org.eclipse.emf.ecore.EObject; import org.eclipse.jface.viewers.ISelection; import org.eclipse.swt.widgets.Composite; public class BoundaryEventPropertySection extends DefaultPropertySection { /* (non-Javadoc) * @see org.eclipse.bpmn2.modeler.ui.property.AbstractBpmn2PropertySection#createSectionRoot() */ @Override protected AbstractDetailComposite createSectionRoot() { return new BoundaryEventDetailComposite(this); } @Override public AbstractDetailComposite createSectionRoot(Composite parent, int style) { return new BoundaryEventDetailComposite(parent,style); } @Override public EObject getBusinessObjectForSelection(ISelection selection) { EObject be = super.getBusinessObjectForSelection(selection); if (be instanceof BoundaryEvent) return be; return null; } }