public class Building
extends java.lang.Object
implements java.io.Serializable
Java class for Building complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Building"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Vertex" type="{}Vertex" maxOccurs="unbounded" minOccurs="3"/> </sequence> <attribute name="height" type="{http://www.w3.org/2001/XMLSchema}double" /> <attribute name="flatRoof" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="safeHouse" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected java.lang.Boolean |
flatRoof |
protected java.lang.Double |
height |
protected java.lang.Boolean |
safeHouse |
protected java.util.List<Vertex> |
vertex |
Constructor and Description |
---|
Building() |
Modifier and Type | Method and Description |
---|---|
java.lang.Double |
getHeight()
Gets the value of the height property.
|
java.util.List<Vertex> |
getVertex()
Gets the value of the vertex property.
|
java.lang.Boolean |
isFlatRoof()
Gets the value of the flatRoof property.
|
java.lang.Boolean |
isSafeHouse()
Gets the value of the safeHouse property.
|
void |
setFlatRoof(java.lang.Boolean value)
Sets the value of the flatRoof property.
|
void |
setHeight(java.lang.Double value)
Sets the value of the height property.
|
void |
setSafeHouse(java.lang.Boolean value)
Sets the value of the safeHouse property.
|
protected java.util.List<Vertex> vertex
protected java.lang.Double height
protected java.lang.Boolean flatRoof
protected java.lang.Boolean safeHouse
public java.util.List<Vertex> getVertex()
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 vertex property.
For example, to add a new item, do as follows:
getVertex().add(newItem);
Objects of the following type(s) are allowed in the list
Vertex
public java.lang.Double getHeight()
Double
public void setHeight(java.lang.Double value)
value
- allowed object is
Double
public java.lang.Boolean isFlatRoof()
Boolean
public void setFlatRoof(java.lang.Boolean value)
value
- allowed object is
Boolean
public java.lang.Boolean isSafeHouse()
Boolean
public void setSafeHouse(java.lang.Boolean value)
value
- allowed object is
Boolean