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