public class Node
extends java.lang.Object
implements java.io.Serializable
Java class for Node complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Node"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="id" use="required"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}int"> <minInclusive value="0"/> </restriction> </simpleType> </attribute> <attribute name="type" type="{}NodeType" /> <attribute name="x" use="required" type="{}Coordinate" /> <attribute name="y" use="required" type="{}Coordinate" /> <attribute name="z" use="required" type="{}Coordinate" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected int |
id |
protected java.lang.String |
type |
protected double |
x |
protected double |
y |
protected double |
z |
Constructor and Description |
---|
Node() |
Modifier and Type | Method and Description |
---|---|
int |
getId()
Gets the value of the id property.
|
java.lang.String |
getType()
Gets the value of the type property.
|
double |
getX()
Gets the value of the x property.
|
double |
getY()
Gets the value of the y property.
|
double |
getZ()
Gets the value of the z property.
|
void |
setId(int value)
Sets the value of the id property.
|
void |
setType(java.lang.String value)
Sets the value of the type property.
|
void |
setX(double value)
Sets the value of the x property.
|
void |
setY(double value)
Sets the value of the y property.
|
void |
setZ(double value)
Sets the value of the z property.
|
protected int id
protected java.lang.String type
protected double x
protected double y
protected double z
public int getId()
public void setId(int value)
public java.lang.String getType()
String
public void setType(java.lang.String value)
value
- allowed object is
String
public double getX()
public void setX(double value)
public double getY()
public void setY(double value)
public double getZ()
public void setZ(double value)