/******************************************************************************* * 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 Bob Brodt ******************************************************************************/ package org.eclipse.bpmn2.modeler.ui.features.activity.subprocess; import org.eclipse.bpmn2.modeler.core.merrimac.clad.AbstractDetailComposite; import org.eclipse.bpmn2.modeler.core.merrimac.clad.DefaultPropertySection; import org.eclipse.bpmn2.modeler.ui.property.tasks.ActivityDetailComposite; import org.eclipse.emf.ecore.EObject; import org.eclipse.jface.viewers.ISelection; import org.eclipse.swt.widgets.Composite; import org.eclipse.ui.IWorkbenchPart; /** * @author Bob Brodt * */ public class SubProcessPropertySection extends DefaultPropertySection { /* (non-Javadoc) * @see org.eclipse.bpmn2.modeler.ui.property.AbstractBpmn2PropertySection#createSectionRoot() */ @Override protected AbstractDetailComposite createSectionRoot() { return new ActivityDetailComposite(this); } @Override public AbstractDetailComposite createSectionRoot(Composite parent, int style) { return new ActivityDetailComposite(parent,style); } @Override public boolean appliesTo(IWorkbenchPart part, ISelection selection) { if (super.appliesTo(part, selection)) { EObject bo = getBusinessObjectForSelection(selection); if (bo.eClass().getName().equals("SubProcess")) //$NON-NLS-1$ return true; } return false; } }