Class DiagramType
Java class for DiagramType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="DiagramType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Shape" type="{http://jurgenei.name/canonical}ShapeType" maxOccurs="unbounded" minOccurs="0"/>
<element name="Connector" type="{http://jurgenei.name/canonical}ConnectorType" maxOccurs="unbounded" minOccurs="0"/>
<element name="Node" type="{http://jurgenei.name/canonical}NodeType" maxOccurs="unbounded" minOccurs="0"/>
<element name="Edge" type="{http://jurgenei.name/canonical}EdgeType" maxOccurs="unbounded" minOccurs="0"/>
<element name="Group" type="{http://jurgenei.name/canonical}GroupType" maxOccurs="unbounded" minOccurs="0"/>
<element name="Annotation" type="{http://jurgenei.name/canonical}AnnotationType" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="source-path" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<AnnotationType> protected List<ConnectorType> protected String -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the annotation property.Gets the value of the connector property.getEdge()Gets the value of the edge property.getGroup()Gets the value of the group property.getNode()Gets the value of the node property.getShape()Gets the value of the shape property.Gets the value of the sourcePath property.voidsetSourcePath(String value) Sets the value of the sourcePath property.
-
Field Details
-
shape
-
connector
-
node
-
edge
-
group
-
annotation
-
sourcePath
-
-
Constructor Details
-
DiagramType
public DiagramType()
-
-
Method Details
-
getShape
Gets the value of the shape 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
setmethod for the shape property.For example, to add a new item, do as follows:
getShape().add(newItem);
Objects of the following type(s) are allowed in the list
ShapeType- Returns:
- The value of the shape property.
-
getConnector
Gets the value of the connector 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
setmethod for the connector property.For example, to add a new item, do as follows:
getConnector().add(newItem);
Objects of the following type(s) are allowed in the list
ConnectorType- Returns:
- The value of the connector property.
-
getNode
Gets the value of the node 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
setmethod for the node property.For example, to add a new item, do as follows:
getNode().add(newItem);
Objects of the following type(s) are allowed in the list
NodeType- Returns:
- The value of the node property.
-
getEdge
Gets the value of the edge 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
setmethod for the edge property.For example, to add a new item, do as follows:
getEdge().add(newItem);
Objects of the following type(s) are allowed in the list
EdgeType- Returns:
- The value of the edge property.
-
getGroup
Gets the value of the group 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
setmethod for the group property.For example, to add a new item, do as follows:
getGroup().add(newItem);
Objects of the following type(s) are allowed in the list
GroupType- Returns:
- The value of the group property.
-
getAnnotation
Gets the value of the annotation 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
setmethod for the annotation property.For example, to add a new item, do as follows:
getAnnotation().add(newItem);
Objects of the following type(s) are allowed in the list
AnnotationType- Returns:
- The value of the annotation property.
-
getSourcePath
Gets the value of the sourcePath property.- Returns:
- possible object is
String
-
setSourcePath
Sets the value of the sourcePath property.- Parameters:
value- allowed object isString
-