All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.omg.bpmn.bpmn2.SubProcess Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2012 - 2024 Data In Motion and others.
 * All rights reserved. 
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 * 
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *      Mark Hoffmann - initial API and implementation
 */
package org.omg.bpmn.bpmn2;

import org.eclipse.emf.common.util.EList;

import org.osgi.annotation.versioning.ProviderType;

/**
 * 
 * A representation of the model object 'Sub Process'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.omg.bpmn.bpmn2.SubProcess#getArtifacts Artifacts}
  • *
  • {@link org.omg.bpmn.bpmn2.SubProcess#isTriggeredByEvent Triggered By Event}
  • *
* * @see org.omg.bpmn.bpmn2.Bpmn2Package#getSubProcess() * @model extendedMetaData="name='tSubProcess' kind='elementOnly'" * @generated */ @ProviderType public interface SubProcess extends Activity, FlowElementsContainer, InteractionNode { /** * Returns the value of the 'Artifacts' containment reference list. * The list contents are of type {@link org.omg.bpmn.bpmn2.Artifact}. * * * @return the value of the 'Artifacts' containment reference list. * @see org.omg.bpmn.bpmn2.Bpmn2Package#getSubProcess_Artifacts() * @model containment="true" ordered="false" * extendedMetaData="kind='element' name='artifact' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL' group='http://www.omg.org/spec/BPMN/20100524/MODEL#artifact'" * @generated */ EList getArtifacts(); /** * Returns the value of the 'Triggered By Event' attribute. * The default value is "false". * * * @return the value of the 'Triggered By Event' attribute. * @see #setTriggeredByEvent(boolean) * @see org.omg.bpmn.bpmn2.Bpmn2Package#getSubProcess_TriggeredByEvent() * @model default="false" ordered="false" * extendedMetaData="kind='attribute' name='triggeredByEvent'" * @generated */ boolean isTriggeredByEvent(); /** * Sets the value of the '{@link org.omg.bpmn.bpmn2.SubProcess#isTriggeredByEvent Triggered By Event}' attribute. * * * @param value the new value of the 'Triggered By Event' attribute. * @see #isTriggeredByEvent() * @generated */ void setTriggeredByEvent(boolean value); } // SubProcess




© 2015 - 2024 Weber Informatics LLC | Privacy Policy