Package org.omg.spec.bpmn.model
Class DiagramElement
- java.lang.Object
-
- org.omg.spec.bpmn.model.DiagramElement
-
public abstract class DiagramElement extends Object
Java class for DiagramElement complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DiagramElement"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="extension" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> <anyAttribute processContents='lax' namespace='##other'/> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DiagramElement.Extension
Java class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected DiagramElement.Extension
extension
protected String
id
-
Constructor Summary
Constructors Constructor Description DiagramElement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DiagramElement.Extension
getExtension()
Gets the value of the extension property.String
getId()
Gets the value of the id property.Map<QName,String>
getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.void
setExtension(DiagramElement.Extension value)
Sets the value of the extension property.void
setId(String value)
Sets the value of the id property.
-
-
-
Field Detail
-
extension
protected DiagramElement.Extension extension
-
id
protected String id
-
-
Method Detail
-
getExtension
public DiagramElement.Extension getExtension()
Gets the value of the extension property.- Returns:
- possible object is
DiagramElement.Extension
-
setExtension
public void setExtension(DiagramElement.Extension value)
Sets the value of the extension property.- Parameters:
value
- allowed object isDiagramElement.Extension
-
setId
public void setId(String value)
Sets the value of the id property.- Parameters:
value
- allowed object isString
-
getOtherAttributes
public Map<QName,String> getOtherAttributes()
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.
- Returns:
- always non-null
-
-