blob: e50253c668b5597111ebff2d5704a554fe3e4d44 [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.modeler.core.merrimac.clad.AbstractBpmn2PropertySection;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EReference;
import org.eclipse.swt.widgets.Composite;
/**
* @author Bob Brodt
*
*/
public class JbpmSubProcessDetailComposite extends JbpmActivityDetailComposite {
public JbpmSubProcessDetailComposite(AbstractBpmn2PropertySection section) {
super(section);
}
public JbpmSubProcessDetailComposite(Composite parent, int style) {
super(parent, style);
}
protected void bindReference(Composite parent, EObject object, EReference reference) {
if ("loopCharacteristics".equals(reference.getName())) { //$NON-NLS-1$
if (!isModelObjectEnabled(object.eClass(), reference))
return;
super.bindReference(parent, object, reference);
addStandardLoopButton.setVisible(false);
}
else
super.bindReference(parent, object, reference);
}
}