neuroml.meta
Class Point

java.lang.Object
  extended by neuroml.meta.Point

public class Point
extends java.lang.Object

A 3D point with optional diameter. Note: the units for these values will be specified in the file in which the element is used, e.g. in a MorphML file with lengthUnits="micron" in the morphml element

Java class for Point complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Point">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="diameter" type="{http://www.w3.org/2001/XMLSchema}double" />
       <attribute name="x" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
       <attribute name="y" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
       <attribute name="z" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.lang.Double diameter
           
protected  double x
           
protected  double y
           
protected  double z
           
 
Constructor Summary
Point()
           
 
Method Summary
 java.lang.Double getDiameter()
          Gets the value of the diameter 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 setDiameter(java.lang.Double value)
          Sets the value of the diameter 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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

diameter

protected java.lang.Double diameter

x

protected double x

y

protected double y

z

protected double z
Constructor Detail

Point

public Point()
Method Detail

getDiameter

public java.lang.Double getDiameter()
Gets the value of the diameter property.

Returns:
possible object is Double

setDiameter

public void setDiameter(java.lang.Double value)
Sets the value of the diameter property.

Parameters:
value - allowed object is Double

getX

public double getX()
Gets the value of the x property.


setX

public void setX(double value)
Sets the value of the x property.


getY

public double getY()
Gets the value of the y property.


setY

public void setY(double value)
Sets the value of the y property.


getZ

public double getZ()
Gets the value of the z property.


setZ

public void setZ(double value)
Sets the value of the z property.



NeuroML API (v1.4)