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

org.omg.bpmn.di.BPMNPlane 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.di;

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

import org.omg.bpmn.bpmn2.BaseElement;

import org.omg.dd.di.Plane;

import org.osgi.annotation.versioning.ProviderType;

/**
 * 
 * A representation of the model object 'BPMN Plane'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.omg.bpmn.di.BPMNPlane#getBpmnElement Bpmn Element}
  • *
  • {@link org.omg.bpmn.di.BPMNPlane#getBpmnShape Bpmn Shape}
  • *
  • {@link org.omg.bpmn.di.BPMNPlane#getBpmnEdge Bpmn Edge}
  • *
* * @see org.omg.bpmn.di.BpmnDiPackage#getBPMNPlane() * @model extendedMetaData="name='BPMNPlane' kind='elementOnly'" * @generated */ @ProviderType public interface BPMNPlane extends Plane { /** * Returns the value of the 'Bpmn Element' reference. * * * @return the value of the 'Bpmn Element' reference. * @see #setBpmnElement(BaseElement) * @see org.omg.bpmn.di.BpmnDiPackage#getBPMNPlane_BpmnElement() * @model ordered="false" * extendedMetaData="kind='attribute' name='bpmnElement'" * @generated */ BaseElement getBpmnElement(); /** * Sets the value of the '{@link org.omg.bpmn.di.BPMNPlane#getBpmnElement Bpmn Element}' reference. * * * @param value the new value of the 'Bpmn Element' reference. * @see #getBpmnElement() * @generated */ void setBpmnElement(BaseElement value); /** * Returns the value of the 'Bpmn Shape' containment reference list. * The list contents are of type {@link org.omg.bpmn.di.BPMNShape}. * * * @return the value of the 'Bpmn Shape' containment reference list. * @see org.omg.bpmn.di.BpmnDiPackage#getBPMNPlane_BpmnShape() * @model containment="true" ordered="false" * extendedMetaData="kind='element' name='BPMNShape' namespace='##targetNamespace'" * @generated */ EList getBpmnShape(); /** * Returns the value of the 'Bpmn Edge' containment reference list. * The list contents are of type {@link org.omg.bpmn.di.BPMNEdge}. * * * @return the value of the 'Bpmn Edge' containment reference list. * @see org.omg.bpmn.di.BpmnDiPackage#getBPMNPlane_BpmnEdge() * @model containment="true" ordered="false" * extendedMetaData="kind='element' name='BPMNEdge' namespace='##targetNamespace'" * @generated */ EList getBpmnEdge(); } // BPMNPlane




© 2015 - 2024 Weber Informatics LLC | Privacy Policy