/******************************************************************************* * 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.features.choreography; import org.eclipse.bpmn2.SubChoreography; import org.eclipse.graphiti.features.IFeatureProvider; public class AddSubChoreographyFeature extends AddChoreographyActivityFeature<SubChoreography> { public AddSubChoreographyFeature(IFeatureProvider fp) { super(fp); } /* (non-Javadoc) * @see org.eclipse.bpmn2.modeler.core.features.AbstractBpmn2AddFeature#getBusinessObjectType() */ @Override public Class getBusinessObjectType() { return SubChoreography.class; } }