| java.lang.Object org.collada.colladaschema.Animation
Animation | public class Animation (Code) | | 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>
<sequence>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}source" maxOccurs="unbounded"/>
<choice>
<sequence>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}sampler" maxOccurs="unbounded"/>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}channel" maxOccurs="unbounded"/>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}animation" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}animation" maxOccurs="unbounded"/>
</choice>
</sequence>
<sequence>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}sampler" maxOccurs="unbounded"/>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}channel" maxOccurs="unbounded"/>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}animation" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}animation" maxOccurs="unbounded"/>
</choice>
<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="name" type="{http://www.w3.org/2001/XMLSchema}NCName" />
</restriction>
</complexContent>
</complexType>
|
Method Summary | |
public List<Animation> | getAnimations() Gets the value of the animations property.
This accessor method returns a reference to the live list,
not a snapshot. | public Asset | getAsset() The animation element may contain an asset element. | public List<Channel> | getChannels() Gets the value of the channels property.
This accessor method returns a reference to the live list,
not a snapshot. | public List<Extra> | getExtras() The extra element may appear any number of times.
Gets the value of the extras property.
This accessor method returns a reference to the live list,
not a snapshot. | public String | getId() Gets the value of the id property. | public String | getName() Gets the value of the name property. | public List<Sampler> | getSamplers() Gets the value of the samplers property.
This accessor method returns a reference to the live list,
not a snapshot. | public List<Source> | getSources() The animation element may contain any number of source elements.
Gets the value of the sources property.
This accessor method returns a reference to the live list,
not a snapshot. | public void | setAsset(Asset value) The animation element may contain an asset element. | public void | setId(String value) Sets the value of the id property. | public void | setName(String value) Sets the value of the name property. |
getAnimations | public List<Animation> getAnimations()(Code) | | Gets the value of the animations 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 animations property.
For example, to add a new item, do as follows:
getAnimations().add(newItem);
Objects of the following type(s) are allowed in the list
Animation |
getAsset | public Asset getAsset()(Code) | | The animation element may contain an asset element.
possible object isAsset |
getChannels | public List<Channel> getChannels()(Code) | | Gets the value of the channels 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 channels property.
For example, to add a new item, do as follows:
getChannels().add(newItem);
Objects of the following type(s) are allowed in the list
Channel |
getExtras | public List<Extra> getExtras()(Code) | | The extra element may appear any number of times.
Gets the value of the extras 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 extras property.
For example, to add a new item, do as follows:
getExtras().add(newItem);
Objects of the following type(s) are allowed in the list
Extra |
getId | public String getId()(Code) | | Gets the value of the id property.
possible object isString |
getName | public String getName()(Code) | | Gets the value of the name property.
possible object isString |
getSamplers | public List<Sampler> getSamplers()(Code) | | Gets the value of the samplers 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 samplers property.
For example, to add a new item, do as follows:
getSamplers().add(newItem);
Objects of the following type(s) are allowed in the list
Sampler |
getSources | public List<Source> getSources()(Code) | | The animation element may contain any number of source elements.
Gets the value of the sources 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 sources property.
For example, to add a new item, do as follows:
getSources().add(newItem);
Objects of the following type(s) are allowed in the list
Source |
setAsset | public void setAsset(Asset value)(Code) | | The animation element may contain an asset element.
Parameters: value - allowed object isAsset |
setId | public void setId(String value)(Code) | | Sets the value of the id property.
Parameters: value - allowed object isString |
setName | public void setName(String value)(Code) | | Sets the value of the name property.
Parameters: value - allowed object isString |
|
|