Package jaxb
Class Node
- java.lang.Object
-
- jaxb.Node
-
public class Node extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}long" /> <attribute name="x" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="y" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="vsink" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="vsource" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Node()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getId()
Gets the value of the id property.Float
getX()
Gets the value of the x property.Float
getY()
Gets the value of the y property.boolean
isVsink()
Gets the value of the vsink property.boolean
isVsource()
Gets the value of the vsource property.void
setId(long value)
Sets the value of the id property.void
setVsink(Boolean value)
Sets the value of the vsink property.void
setVsource(Boolean value)
Sets the value of the vsource property.void
setX(Float value)
Sets the value of the x property.void
setY(Float value)
Sets the value of the y property.
-
-
-
Method Detail
-
getId
public long getId()
Gets the value of the id property.
-
setId
public void setId(long value)
Sets the value of the id property.
-
setX
public void setX(Float value)
Sets the value of the x property.- Parameters:
value
- allowed object isFloat
-
setY
public void setY(Float value)
Sets the value of the y property.- Parameters:
value
- allowed object isFloat
-
isVsink
public boolean isVsink()
Gets the value of the vsink property.- Returns:
- possible object is
Boolean
-
setVsink
public void setVsink(Boolean value)
Sets the value of the vsink property.- Parameters:
value
- allowed object isBoolean
-
isVsource
public boolean isVsource()
Gets the value of the vsource property.- Returns:
- possible object is
Boolean
-
-