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

org.omg.spec.bpmn.model.TAssociation Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (C) 2023 BonitaSoft S.A.
 * BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2.0 of the License, or
 * (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see .
 */
package org.omg.spec.bpmn.model;

import javax.xml.namespace.QName;

/**
 * 
 * A representation of the model object 'TAssociation'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.omg.spec.bpmn.model.TAssociation#getAssociationDirection Association Direction}
  • *
  • {@link org.omg.spec.bpmn.model.TAssociation#getSourceRef Source Ref}
  • *
  • {@link org.omg.spec.bpmn.model.TAssociation#getTargetRef Target Ref}
  • *
* * @see org.omg.spec.bpmn.model.ModelPackage#getTAssociation() * @model extendedMetaData="name='tAssociation' kind='elementOnly'" * @generated */ public interface TAssociation extends TArtifact { /** * Returns the value of the 'Association Direction' attribute. * The default value is "None". * The literals are from the enumeration {@link org.omg.spec.bpmn.model.TAssociationDirection}. * * * @return the value of the 'Association Direction' attribute. * @see org.omg.spec.bpmn.model.TAssociationDirection * @see #isSetAssociationDirection() * @see #unsetAssociationDirection() * @see #setAssociationDirection(TAssociationDirection) * @see org.omg.spec.bpmn.model.ModelPackage#getTAssociation_AssociationDirection() * @model default="None" unsettable="true" * extendedMetaData="kind='attribute' name='associationDirection'" * @generated */ TAssociationDirection getAssociationDirection(); /** * Sets the value of the '{@link org.omg.spec.bpmn.model.TAssociation#getAssociationDirection Association Direction}' attribute. * * * @param value the new value of the 'Association Direction' attribute. * @see org.omg.spec.bpmn.model.TAssociationDirection * @see #isSetAssociationDirection() * @see #unsetAssociationDirection() * @see #getAssociationDirection() * @generated */ void setAssociationDirection(TAssociationDirection value); /** * Unsets the value of the '{@link org.omg.spec.bpmn.model.TAssociation#getAssociationDirection Association Direction}' attribute. * * * @see #isSetAssociationDirection() * @see #getAssociationDirection() * @see #setAssociationDirection(TAssociationDirection) * @generated */ void unsetAssociationDirection(); /** * Returns whether the value of the '{@link org.omg.spec.bpmn.model.TAssociation#getAssociationDirection Association Direction}' attribute is set. * * * @return whether the value of the 'Association Direction' attribute is set. * @see #unsetAssociationDirection() * @see #getAssociationDirection() * @see #setAssociationDirection(TAssociationDirection) * @generated */ boolean isSetAssociationDirection(); /** * Returns the value of the 'Source Ref' attribute. * * * @return the value of the 'Source Ref' attribute. * @see #setSourceRef(QName) * @see org.omg.spec.bpmn.model.ModelPackage#getTAssociation_SourceRef() * @model dataType="org.eclipse.emf.ecore.xml.type.QName" required="true" * extendedMetaData="kind='attribute' name='sourceRef'" * @generated */ QName getSourceRef(); /** * Sets the value of the '{@link org.omg.spec.bpmn.model.TAssociation#getSourceRef Source Ref}' attribute. * * * @param value the new value of the 'Source Ref' attribute. * @see #getSourceRef() * @generated */ void setSourceRef(QName value); /** * Returns the value of the 'Target Ref' attribute. * * * @return the value of the 'Target Ref' attribute. * @see #setTargetRef(QName) * @see org.omg.spec.bpmn.model.ModelPackage#getTAssociation_TargetRef() * @model dataType="org.eclipse.emf.ecore.xml.type.QName" required="true" * extendedMetaData="kind='attribute' name='targetRef'" * @generated */ QName getTargetRef(); /** * Sets the value of the '{@link org.omg.spec.bpmn.model.TAssociation#getTargetRef Target Ref}' attribute. * * * @param value the new value of the 'Target Ref' attribute. * @see #getTargetRef() * @generated */ void setTargetRef(QName value); } // TAssociation




© 2015 - 2025 Weber Informatics LLC | Privacy Policy