Class BodyType
Java class for BodyType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="BodyType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Paragraph" type="{http://jurgenei.name/canonical}ParagraphType" maxOccurs="unbounded" minOccurs="0"/>
<element name="List" type="{http://jurgenei.name/canonical}ListType" maxOccurs="unbounded" minOccurs="0"/>
<element name="Table" type="{http://jurgenei.name/canonical}TableType" maxOccurs="unbounded" minOccurs="0"/>
<element name="Link" type="{http://jurgenei.name/canonical}LinkType" maxOccurs="unbounded" minOccurs="0"/>
<element name="Reference" type="{http://jurgenei.name/canonical}ReferenceType" maxOccurs="unbounded" minOccurs="0"/>
<element name="Diagram" type="{http://jurgenei.name/canonical}DiagramType" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the diagram property.getLink()Gets the value of the link property.getList()Gets the value of the list property.Gets the value of the paragraph property.Gets the value of the reference property.getTable()Gets the value of the table property.
-
Field Details
-
paragraph
-
list
-
table
-
link
-
reference
-
diagram
-
-
Constructor Details
-
BodyType
public BodyType()
-
-
Method Details
-
getParagraph
Gets the value of the paragraph 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 paragraph property.For example, to add a new item, do as follows:
getParagraph().add(newItem);
Objects of the following type(s) are allowed in the list
ParagraphType- Returns:
- The value of the paragraph property.
-
getList
Gets the value of the list 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 list property.For example, to add a new item, do as follows:
getList().add(newItem);
Objects of the following type(s) are allowed in the list
ListType- Returns:
- The value of the list property.
-
getTable
Gets the value of the table 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 table property.For example, to add a new item, do as follows:
getTable().add(newItem);
Objects of the following type(s) are allowed in the list
TableType- Returns:
- The value of the table property.
-
getLink
Gets the value of the link 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 link property.For example, to add a new item, do as follows:
getLink().add(newItem);
Objects of the following type(s) are allowed in the list
LinkType- Returns:
- The value of the link property.
-
getReference
Gets the value of the reference 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 reference property.For example, to add a new item, do as follows:
getReference().add(newItem);
Objects of the following type(s) are allowed in the list
ReferenceType- Returns:
- The value of the reference property.
-
getDiagram
Gets the value of the diagram 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 diagram property.For example, to add a new item, do as follows:
getDiagram().add(newItem);
Objects of the following type(s) are allowed in the list
DiagramType- Returns:
- The value of the diagram property.
-