org.collada._2005._11.colladaschema
Class Node

java.lang.Object
  extended by org.collada._2005._11.colladaschema.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">
       <sequence>
         <element ref="{http://www.collada.org/2005/11/COLLADASchema}asset" minOccurs="0"/>
         <choice maxOccurs="unbounded" minOccurs="0">
           <element ref="{http://www.collada.org/2005/11/COLLADASchema}lookat"/>
           <element ref="{http://www.collada.org/2005/11/COLLADASchema}matrix"/>
           <element ref="{http://www.collada.org/2005/11/COLLADASchema}rotate"/>
           <element ref="{http://www.collada.org/2005/11/COLLADASchema}scale"/>
           <element ref="{http://www.collada.org/2005/11/COLLADASchema}skew"/>
           <element ref="{http://www.collada.org/2005/11/COLLADASchema}translate"/>
         </choice>
         <element ref="{http://www.collada.org/2005/11/COLLADASchema}instance_camera" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.collada.org/2005/11/COLLADASchema}instance_controller" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.collada.org/2005/11/COLLADASchema}instance_geometry" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.collada.org/2005/11/COLLADASchema}instance_light" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.collada.org/2005/11/COLLADASchema}instance_node" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.collada.org/2005/11/COLLADASchema}node" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.collada.org/2005/11/COLLADASchema}extra" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
       <attribute name="layer" type="{http://www.collada.org/2005/11/COLLADASchema}ListOfNames" />
       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}NCName" />
       <attribute name="sid" type="{http://www.w3.org/2001/XMLSchema}NCName" />
       <attribute name="type" type="{http://www.collada.org/2005/11/COLLADASchema}NodeType" default="NODE" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  Asset asset
           
protected  List<Extra> extra
           
protected  String id
           
protected  List<InstanceWithExtra> instanceCamera
           
protected  List<InstanceController> instanceController
           
protected  List<InstanceGeometry> instanceGeometry
           
protected  List<InstanceWithExtra> instanceLight
           
protected  List<InstanceWithExtra> instanceNode
           
protected  List<String> layer
           
protected  List<Object> lookatOrMatrixOrRotate
           
protected  String name
           
protected  List<Node> node
           
protected  String sid
           
protected  NodeType type
           
 
Constructor Summary
Node()
           
 
Method Summary
 Asset getAsset()
          The node element may contain an asset element.
 List<Extra> getExtra()
          The extra element may appear any number of times.
 String getId()
          Gets the value of the id property.
 List<InstanceWithExtra> getInstanceCamera()
          The node element may instance any number of camera objects.
 List<InstanceController> getInstanceController()
          The node element may instance any number of controller objects.
 List<InstanceGeometry> getInstanceGeometry()
          The node element may instance any number of geometry objects.
 List<InstanceWithExtra> getInstanceLight()
          The node element may instance any number of light objects.
 List<InstanceWithExtra> getInstanceNode()
          The node element may instance any number of node elements or hierarchies objects.
 List<String> getLayer()
          Gets the value of the layer property.
 List<Object> getLookatOrMatrixOrRotate()
          Gets the value of the lookatOrMatrixOrRotate property.
 String getName()
          Gets the value of the name property.
 List<Node> getNode()
          The node element may be hierarchical and be the parent of any number of other node elements.
 String getSid()
          Gets the value of the sid property.
 NodeType getType()
          Gets the value of the type property.
 void setAsset(Asset value)
          The node element may contain an asset element.
 void setId(String value)
          Sets the value of the id property.
 void setName(String value)
          Sets the value of the name property.
 void setSid(String value)
          Sets the value of the sid property.
 void setType(NodeType value)
          Sets the value of the type property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

asset

protected Asset asset

lookatOrMatrixOrRotate

protected List<Object> lookatOrMatrixOrRotate

instanceCamera

protected List<InstanceWithExtra> instanceCamera

instanceController

protected List<InstanceController> instanceController

instanceGeometry

protected List<InstanceGeometry> instanceGeometry

instanceLight

protected List<InstanceWithExtra> instanceLight

instanceNode

protected List<InstanceWithExtra> instanceNode

node

protected List<Node> node

extra

protected List<Extra> extra

id

protected String id

layer

protected List<String> layer

name

protected String name

sid

protected String sid

type

protected NodeType type
Constructor Detail

Node

public Node()
Method Detail

getAsset

public Asset getAsset()
The node element may contain an asset element.

Returns:
possible object is Asset

setAsset

public void setAsset(Asset value)
The node element may contain an asset element.

Parameters:
value - allowed object is Asset

getLookatOrMatrixOrRotate

public List<Object> getLookatOrMatrixOrRotate()
Gets the value of the lookatOrMatrixOrRotate property.

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 lookatOrMatrixOrRotate property.

For example, to add a new item, do as follows:

    getLookatOrMatrixOrRotate().add(newItem);
 

Objects of the following type(s) are allowed in the list Rotate Scale Lookat Skew Translate Matrix


getInstanceCamera

public List<InstanceWithExtra> getInstanceCamera()
The node element may instance any number of camera objects. Gets the value of the instanceCamera property.

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 instanceCamera property.

For example, to add a new item, do as follows:

    getInstanceCamera().add(newItem);
 

Objects of the following type(s) are allowed in the list InstanceWithExtra


getInstanceController

public List<InstanceController> getInstanceController()
The node element may instance any number of controller objects. Gets the value of the instanceController property.

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 instanceController property.

For example, to add a new item, do as follows:

    getInstanceController().add(newItem);
 

Objects of the following type(s) are allowed in the list InstanceController


getInstanceGeometry

public List<InstanceGeometry> getInstanceGeometry()
The node element may instance any number of geometry objects. Gets the value of the instanceGeometry property.

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 instanceGeometry property.

For example, to add a new item, do as follows:

    getInstanceGeometry().add(newItem);
 

Objects of the following type(s) are allowed in the list InstanceGeometry


getInstanceLight

public List<InstanceWithExtra> getInstanceLight()
The node element may instance any number of light objects. Gets the value of the instanceLight property.

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 instanceLight property.

For example, to add a new item, do as follows:

    getInstanceLight().add(newItem);
 

Objects of the following type(s) are allowed in the list InstanceWithExtra


getInstanceNode

public List<InstanceWithExtra> getInstanceNode()
The node element may instance any number of node elements or hierarchies objects. Gets the value of the instanceNode property.

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 instanceNode property.

For example, to add a new item, do as follows:

    getInstanceNode().add(newItem);
 

Objects of the following type(s) are allowed in the list InstanceWithExtra


getNode

public List<Node> getNode()
The node element may be hierarchical and be the parent of any number of other node elements. Gets the value of the node property.

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 node property.

For example, to add a new item, do as follows:

    getNode().add(newItem);
 

Objects of the following type(s) are allowed in the list Node


getExtra

public List<Extra> getExtra()
The extra element may appear any number of times. Gets the value of the extra property.

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 extra property.

For example, to add a new item, do as follows:

    getExtra().add(newItem);
 

Objects of the following type(s) are allowed in the list Extra


getId

public String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(String value)
Sets the value of the id property.

Parameters:
value - allowed object is String

getLayer

public List<String> getLayer()
Gets the value of the layer property.

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 layer property.

For example, to add a new item, do as follows:

    getLayer().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getName

public String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(String value)
Sets the value of the name property.

Parameters:
value - allowed object is String

getSid

public String getSid()
Gets the value of the sid property.

Returns:
possible object is String

setSid

public void setSid(String value)
Sets the value of the sid property.

Parameters:
value - allowed object is String

getType

public NodeType getType()
Gets the value of the type property.

Returns:
possible object is NodeType

setType

public void setType(NodeType value)
Sets the value of the type property.

Parameters:
value - allowed object is NodeType

CroftSoft Javadoc

CroftSoft COLLADA JAXB Javadoc (2006-11-13 15:08:25)