📄 spottype.java
字号:
/**
* spotType.java
*
* This file was generated by XMLSpy 2007sp2 Enterprise Edition.
*
* YOU SHOULD NOT MODIFY THIS FILE, BECAUSE IT WILL BE
* OVERWRITTEN WHEN YOU RE-RUN CODE GENERATION.
*
* Refer to the XMLSpy Documentation for further details.
* http://www.altova.com/xmlspy
*/
package com.jmex.model.collada.schema;
public class spotType extends com.jmex.xml.xml.Node {
public spotType(spotType node) {
super(node);
}
public spotType(org.w3c.dom.Node node) {
super(node);
}
public spotType(org.w3c.dom.Document doc) {
super(doc);
}
public spotType(com.jmex.xml.xml.Document doc, String namespaceURI, String prefix, String name) {
super(doc, namespaceURI, prefix, name);
}
public void adjustPrefix() {
for ( org.w3c.dom.Node tmpNode = getDomFirstChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "color" );
tmpNode != null;
tmpNode = getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "color", tmpNode )
) {
internalAdjustPrefix(tmpNode, true);
new TargetableFloat3(tmpNode).adjustPrefix();
}
for ( org.w3c.dom.Node tmpNode = getDomFirstChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation" );
tmpNode != null;
tmpNode = getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation", tmpNode )
) {
internalAdjustPrefix(tmpNode, true);
new TargetableFloat(tmpNode).adjustPrefix();
}
for ( org.w3c.dom.Node tmpNode = getDomFirstChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "linear_attenuation" );
tmpNode != null;
tmpNode = getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "linear_attenuation", tmpNode )
) {
internalAdjustPrefix(tmpNode, true);
new TargetableFloat(tmpNode).adjustPrefix();
}
for ( org.w3c.dom.Node tmpNode = getDomFirstChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "quadratic_attenuation" );
tmpNode != null;
tmpNode = getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "quadratic_attenuation", tmpNode )
) {
internalAdjustPrefix(tmpNode, true);
new TargetableFloat(tmpNode).adjustPrefix();
}
for ( org.w3c.dom.Node tmpNode = getDomFirstChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "falloff_angle" );
tmpNode != null;
tmpNode = getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "falloff_angle", tmpNode )
) {
internalAdjustPrefix(tmpNode, true);
new TargetableFloat(tmpNode).adjustPrefix();
}
for ( org.w3c.dom.Node tmpNode = getDomFirstChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "falloff_exponent" );
tmpNode != null;
tmpNode = getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "falloff_exponent", tmpNode )
) {
internalAdjustPrefix(tmpNode, true);
new TargetableFloat(tmpNode).adjustPrefix();
}
}
public void setXsiType() {
org.w3c.dom.Element el = (org.w3c.dom.Element) domNode;
el.setAttributeNS("http://www.w3.org/2001/XMLSchema-instance", "xsi:type", "spot");
}
public static int getcolorMinCount() {
return 1;
}
public static int getcolorMaxCount() {
return 1;
}
public int getcolorCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "color");
}
public boolean hascolor() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "color");
}
public TargetableFloat3 newcolor() {
return new TargetableFloat3(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "color"));
}
public TargetableFloat3 getcolorAt(int index) throws Exception {
return new TargetableFloat3(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "color", index));
}
public org.w3c.dom.Node getStartingcolorCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "color" );
}
public org.w3c.dom.Node getAdvancedcolorCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "color", curNode );
}
public TargetableFloat3 getcolorValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new TargetableFloat3(curNode);
}
public TargetableFloat3 getcolor() throws Exception
{
return getcolorAt(0);
}
public void removecolorAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "color", index);
}
public void removecolor() {
removecolorAt(0);
}
public org.w3c.dom.Node addcolor(TargetableFloat3 value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "color", value);
}
public void insertcolorAt(TargetableFloat3 value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "color", index, value);
}
public void replacecolorAt(TargetableFloat3 value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "color", index, value);
}
public static int getconstant_attenuationMinCount() {
return 0;
}
public static int getconstant_attenuationMaxCount() {
return 1;
}
public int getconstant_attenuationCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation");
}
public boolean hasconstant_attenuation() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation");
}
public TargetableFloat newconstant_attenuation() {
return new TargetableFloat(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation"));
}
public TargetableFloat getconstant_attenuationAt(int index) throws Exception {
return new TargetableFloat(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation", index));
}
public org.w3c.dom.Node getStartingconstant_attenuationCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation" );
}
public org.w3c.dom.Node getAdvancedconstant_attenuationCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation", curNode );
}
public TargetableFloat getconstant_attenuationValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new TargetableFloat(curNode);
}
public TargetableFloat getconstant_attenuation() throws Exception
{
return getconstant_attenuationAt(0);
}
public void removeconstant_attenuationAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation", index);
}
public void removeconstant_attenuation() {
removeconstant_attenuationAt(0);
}
public org.w3c.dom.Node addconstant_attenuation(TargetableFloat value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation", value);
}
public void insertconstant_attenuationAt(TargetableFloat value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation", index, value);
}
public void replaceconstant_attenuationAt(TargetableFloat value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "constant_attenuation", index, value);
}
public static int getlinear_attenuationMinCount() {
return 0;
}
public static int getlinear_attenuationMaxCount() {
return 1;
}
public int getlinear_attenuationCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "linear_attenuation");
}
public boolean haslinear_attenuation() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "linear_attenuation");
}
public TargetableFloat newlinear_attenuation() {
return new TargetableFloat(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "linear_attenuation"));
}
public TargetableFloat getlinear_attenuationAt(int index) throws Exception {
return new TargetableFloat(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "linear_attenuation", index));
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -