org.omg.spec.bpmn.model.TBaseElement Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.10.05 at 10:10:30 AM UTC
//
package org.omg.spec.bpmn.model;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.namespace.QName;
/**
* Java class for tBaseElement complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tBaseElement">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}documentation" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}extensionElements" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* <anyAttribute processContents='lax' namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tBaseElement", propOrder = {
"documentation",
"extensionElements"
})
@XmlSeeAlso({
TAssignment.class,
TAuditing.class,
TCategoryValue.class,
TComplexBehaviorDefinition.class,
TConversationAssociation.class,
TConversationLink.class,
TCorrelationKey.class,
TCorrelationPropertyBinding.class,
TCorrelationPropertyRetrievalExpression.class,
TCorrelationSubscription.class,
TDataInput.class,
TDataOutput.class,
TDataAssociation.class,
TDataState.class,
TInputSet.class,
TInputOutputBinding.class,
TInputOutputSpecification.class,
TLane.class,
TLaneSet.class,
TMessageFlow.class,
TMessageFlowAssociation.class,
TMonitoring.class,
TOperation.class,
TOutputSet.class,
TParticipant.class,
TParticipantAssociation.class,
TParticipantMultiplicity.class,
TResourceRole.class,
TProperty.class,
TRelationship.class,
TRendering.class,
TResourceAssignmentExpression.class,
TResourceParameter.class,
TResourceParameterBinding.class,
TLoopCharacteristics.class,
TConversationNode.class,
TArtifact.class,
TRootElement.class,
TFlowElement.class
})
public abstract class TBaseElement {
protected List documentation;
protected TExtensionElements extensionElements;
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAnyAttribute
private Map otherAttributes = new HashMap();
/**
* Gets the value of the documentation property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the documentation property.
*
*
* For example, to add a new item, do as follows:
*
* getDocumentation().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TDocumentation }
*
*
*/
public List getDocumentation() {
if (documentation == null) {
documentation = new ArrayList();
}
return this.documentation;
}
/**
* Gets the value of the extensionElements property.
*
* @return
* possible object is
* {@link TExtensionElements }
*
*/
public TExtensionElements getExtensionElements() {
return extensionElements;
}
/**
* Sets the value of the extensionElements property.
*
* @param value
* allowed object is
* {@link TExtensionElements }
*
*/
public void setExtensionElements(TExtensionElements value) {
this.extensionElements = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
*
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map getOtherAttributes() {
return otherAttributes;
}
}