📄 gles_newparam.java
字号:
public void removeannotateAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "annotate", index);
}
public void removeannotate() {
while (hasannotate())
removeannotateAt(0);
}
public org.w3c.dom.Node addannotate(fx_annotate_common value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "annotate", value);
}
public void insertannotateAt(fx_annotate_common value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "annotate", index, value);
}
public void replaceannotateAt(fx_annotate_common value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "annotate", index, value);
}
public static int getsemanticMinCount() {
return 0;
}
public static int getsemanticMaxCount() {
return 1;
}
public int getsemanticCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "semantic");
}
public boolean hassemantic() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "semantic");
}
public SchemaNCName newsemantic() {
return new SchemaNCName();
}
public SchemaNCName getsemanticAt(int index) throws Exception {
return new SchemaNCName(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "semantic", index)));
}
public org.w3c.dom.Node getStartingsemanticCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "semantic" );
}
public org.w3c.dom.Node getAdvancedsemanticCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "semantic", curNode );
}
public SchemaNCName getsemanticValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaNCName(getDomNodeValue(curNode));
}
public SchemaNCName getsemantic() throws Exception
{
return getsemanticAt(0);
}
public void removesemanticAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "semantic", index);
}
public void removesemantic() {
removesemanticAt(0);
}
public org.w3c.dom.Node addsemantic(SchemaNCName value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "semantic", value.toString());
}
public org.w3c.dom.Node addsemantic(String value) throws Exception {
return addsemantic(new SchemaNCName(value));
}
public void insertsemanticAt(SchemaNCName value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "semantic", index, value.toString());
}
public void insertsemanticAt(String value, int index) throws Exception {
insertsemanticAt(new SchemaNCName(value), index);
}
public void replacesemanticAt(SchemaNCName value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "semantic", index, value.toString());
}
public void replacesemanticAt(String value, int index) throws Exception {
replacesemanticAt(new SchemaNCName(value), index);
}
public static int getmodifierMinCount() {
return 0;
}
public static int getmodifierMaxCount() {
return 1;
}
public int getmodifierCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "modifier");
}
public boolean hasmodifier() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "modifier");
}
public fx_modifier_enum_common newmodifier() {
return new fx_modifier_enum_common();
}
public fx_modifier_enum_common getmodifierAt(int index) throws Exception {
return new fx_modifier_enum_common(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "modifier", index)));
}
public org.w3c.dom.Node getStartingmodifierCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "modifier" );
}
public org.w3c.dom.Node getAdvancedmodifierCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "modifier", curNode );
}
public fx_modifier_enum_common getmodifierValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new fx_modifier_enum_common(getDomNodeValue(curNode));
}
public fx_modifier_enum_common getmodifier() throws Exception
{
return getmodifierAt(0);
}
public void removemodifierAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "modifier", index);
}
public void removemodifier() {
removemodifierAt(0);
}
public org.w3c.dom.Node addmodifier(fx_modifier_enum_common value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "modifier", value.toString());
}
public org.w3c.dom.Node addmodifier(String value) throws Exception {
return addmodifier(new fx_modifier_enum_common(value));
}
public void insertmodifierAt(fx_modifier_enum_common value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "modifier", index, value.toString());
}
public void insertmodifierAt(String value, int index) throws Exception {
insertmodifierAt(new fx_modifier_enum_common(value), index);
}
public void replacemodifierAt(fx_modifier_enum_common value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "modifier", index, value.toString());
}
public void replacemodifierAt(String value, int index) throws Exception {
replacemodifierAt(new fx_modifier_enum_common(value), index);
}
public static int getboolMinCount() {
return 1;
}
public static int getboolMaxCount() {
return 1;
}
public int getboolCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool");
}
public boolean hasbool() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool");
}
public bool newbool() {
return new bool();
}
public bool getboolAt(int index) throws Exception {
return new bool(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool", index)));
}
public org.w3c.dom.Node getStartingboolCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool" );
}
public org.w3c.dom.Node getAdvancedboolCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "bool", curNode );
}
public bool getboolValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new bool(getDomNodeValue(curNode));
}
public bool getbool() throws Exception
{
return getboolAt(0);
}
public void removeboolAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool", index);
}
public void removebool() {
removeboolAt(0);
}
public org.w3c.dom.Node addbool(bool value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool", value.toString());
}
public org.w3c.dom.Node addbool(String value) throws Exception {
return addbool(new bool(value));
}
public void insertboolAt(bool value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool", index, value.toString());
}
public void insertboolAt(String value, int index) throws Exception {
insertboolAt(new bool(value), index);
}
public void replaceboolAt(bool value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool", index, value.toString());
}
public void replaceboolAt(String value, int index) throws Exception {
replaceboolAt(new bool(value), index);
}
public static int getbool2MinCount() {
return 1;
}
public static int getbool2MaxCount() {
return 1;
}
public int getbool2Count() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool2");
}
public boolean hasbool2() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool2");
}
public bool2 newbool2() {
return new bool2();
}
public bool2 getbool2At(int index) throws Exception {
return new bool2(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool2", index)));
}
public org.w3c.dom.Node getStartingbool2Cursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool2" );
}
public org.w3c.dom.Node getAdvancedbool2Cursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "bool2", curNode );
}
public bool2 getbool2ValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new bool2(getDomNodeValue(curNode));
}
public bool2 getbool2() throws Exception
{
return getbool2At(0);
}
public void removebool2At(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool2", index);
}
public void removebool2() {
removebool2At(0);
}
public org.w3c.dom.Node addbool2(bool2 value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool2", value.toString());
}
public org.w3c.dom.Node addbool2(String value) throws Exception {
return addbool2(new bool2(value));
}
public void insertbool2At(bool2 value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool2", index, value.toString());
}
public void insertbool2At(String value, int index) throws Exception {
insertbool2At(new bool2(value), index);
}
public void replacebool2At(bool2 value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool2", index, value.toString());
}
public void replacebool2At(String value, int index) throws Exception {
replacebool2At(new bool2(value), index);
}
public static int getbool3MinCount() {
return 1;
}
public static int getbool3MaxCount() {
return 1;
}
public int getbool3Count() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool3");
}
public boolean hasbool3() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool3");
}
public bool3 newbool3() {
return new bool3();
}
public bool3 getbool3At(int index) throws Exception {
return new bool3(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool3", index)));
}
public org.w3c.dom.Node getStartingbool3Cursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool3" );
}
public org.w3c.dom.Node getAdvancedbool3Cursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "bool3", curNode );
}
public bool3 getbool3ValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new bool3(getDomNodeValue(curNode));
}
public bool3 getbool3() throws Exception
{
return getbool3At(0);
}
public void removebool3At(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "bool3", index);
}
public void removebool3() {
removebool3At(0);
}
public org.w3c.dom.Node addbool3(bool3 value) {
if( value.isNull() )
return null;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -