blob: c209bde870624b4619f4dc3d248d2675848bdaf2 [file] [log] [blame]
/*******************************************************************************
* 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.runtime.jboss.jbpm5.property;
import org.eclipse.bpmn2.Bpmn2Package;
import org.eclipse.bpmn2.modeler.core.merrimac.clad.AbstractDetailComposite;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.swt.widgets.Composite;
/**
* @author Bob Brodt
*
*/
public class JbpmSubProcessPropertySection extends JbpmActivityPropertySection {
@Override
protected AbstractDetailComposite createSectionRoot() {
return new JbpmSubProcessDetailComposite(this);
}
@Override
public AbstractDetailComposite createSectionRoot(Composite parent, int style) {
return new JbpmSubProcessDetailComposite(parent,style);
}
@Override
public boolean appliesTo(EObject eObj) {
return eObj.eClass() == Bpmn2Package.eINSTANCE.getSubProcess();
}
}