| java.lang.Object org.collada.colladaschema.Polylist
Polylist | public class Polylist (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 name="input" type="{http://www.collada.org/2005/11/COLLADASchema}InputLocalOffset" maxOccurs="unbounded" minOccurs="0"/>
<element name="vcount" type="{http://www.collada.org/2005/11/COLLADASchema}ListOfUInts" minOccurs="0"/>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}p" minOccurs="0"/>
<element ref="{http://www.collada.org/2005/11/COLLADASchema}extra" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="count" use="required" type="{http://www.collada.org/2005/11/COLLADASchema}uint" />
<attribute name="material" type="{http://www.w3.org/2001/XMLSchema}NCName" />
<attribute name="name" type="{http://www.w3.org/2001/XMLSchema}NCName" />
</restriction>
</complexContent>
</complexType>
|
Method Summary | |
public BigInteger | getCount() Gets the value of the count property. | 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<InputLocalOffset> | getInputs() Gets the value of the inputs property.
This accessor method returns a reference to the live list,
not a snapshot. | public String | getMaterial() Gets the value of the material property. | public String | getName() Gets the value of the name property. | public List<BigInteger> | getP() The p element may occur once.
Gets the value of the p property.
This accessor method returns a reference to the live list,
not a snapshot. | public List<BigInteger> | getVcount() Gets the value of the vcount property.
This accessor method returns a reference to the live list,
not a snapshot. | public void | setCount(BigInteger value) Sets the value of the count property. | public void | setMaterial(String value) Sets the value of the material property. | public void | setName(String value) Sets the value of the name property. |
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 |
getInputs | public List<InputLocalOffset> getInputs()(Code) | | Gets the value of the inputs 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 inputs property.
For example, to add a new item, do as follows:
getInputs().add(newItem);
Objects of the following type(s) are allowed in the list
InputLocalOffset |
getMaterial | public String getMaterial()(Code) | | Gets the value of the material property.
possible object isString |
getName | public String getName()(Code) | | Gets the value of the name property.
possible object isString |
getP | public List<BigInteger> getP()(Code) | | The p element may occur once.
Gets the value of the p 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 p property.
For example, to add a new item, do as follows:
getP().add(newItem);
Objects of the following type(s) are allowed in the list
BigInteger |
getVcount | public List<BigInteger> getVcount()(Code) | | Gets the value of the vcount 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 vcount property.
For example, to add a new item, do as follows:
getVcount().add(newItem);
Objects of the following type(s) are allowed in the list
BigInteger |
setCount | public void setCount(BigInteger value)(Code) | | Sets the value of the count property.
Parameters: value - allowed object isBigInteger |
setMaterial | public void setMaterial(String value)(Code) | | Sets the value of the material 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 |
|
|