| java.lang.Object org.collada.colladaschema.Effect
Effect | public class Effect (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"/>
<element name="annotate" type="{http://www.collada.org/2005/11/COLLADASchema}fx_annotate_common" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}image" maxOccurs="unbounded" minOccurs="0"/>
<element name="newparam" type="{http://www.collada.org/2005/11/COLLADASchema}fx_newparam_common" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}fx_profile_abstract" maxOccurs="unbounded"/>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}extra" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="id" use="required" 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<FxAnnotateCommon> | getAnnotates() Gets the value of the annotates property.
This accessor method returns a reference to the live list,
not a snapshot. | public Asset | getAsset() The effect element may contain an asset element. | 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 List<JAXBElement<?>> | getFxProfileAbstracts() This is the substituion group hook which allows you to swap in other COLLADA FX profiles.
Gets the value of the fxProfileAbstracts 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 List<Image> | getImages() The image element allows you to create image resources which can be shared by multipe profiles.
Gets the value of the images property.
This accessor method returns a reference to the live list,
not a snapshot. | public String | getName() Gets the value of the name property. | public List<FxNewparamCommon> | getNewparams() Gets the value of the newparams property.
This accessor method returns a reference to the live list,
not a snapshot. | public void | setAsset(Asset value) The effect 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. |
getAnnotates | public List<FxAnnotateCommon> getAnnotates()(Code) | | Gets the value of the annotates 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 annotates property.
For example, to add a new item, do as follows:
getAnnotates().add(newItem);
Objects of the following type(s) are allowed in the list
FxAnnotateCommon |
getAsset | public Asset getAsset()(Code) | | The effect element may contain an asset element.
possible object isAsset |
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 |
getFxProfileAbstracts | public List<JAXBElement<?>> getFxProfileAbstracts()(Code) | | This is the substituion group hook which allows you to swap in other COLLADA FX profiles.
Gets the value of the fxProfileAbstracts 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 fxProfileAbstracts property.
For example, to add a new item, do as follows:
getFxProfileAbstracts().add(newItem);
Objects of the following type(s) are allowed in the list
JAXBElement < ProfileCG > JAXBElement < ProfileGLES > JAXBElement < ProfileCOMMON > JAXBElement < Object > JAXBElement < ProfileGLSL > |
getId | public String getId()(Code) | | Gets the value of the id property.
possible object isString |
getImages | public List<Image> getImages()(Code) | | The image element allows you to create image resources which can be shared by multipe profiles.
Gets the value of the images 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 images property.
For example, to add a new item, do as follows:
getImages().add(newItem);
Objects of the following type(s) are allowed in the list
Image |
getName | public String getName()(Code) | | Gets the value of the name property.
possible object isString |
getNewparams | public List<FxNewparamCommon> getNewparams()(Code) | | Gets the value of the newparams 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 newparams property.
For example, to add a new item, do as follows:
getNewparams().add(newItem);
Objects of the following type(s) are allowed in the list
FxNewparamCommon |
setAsset | public void setAsset(Asset value)(Code) | | The effect 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 |
|
|