📄 instance_rigid_bodytype.java
字号:
return null;
return appendDomChild(Attribute, null, "name", value.toString());
}
public org.w3c.dom.Node addname(String value) throws Exception {
return addname(new SchemaNCName(value));
}
public void insertnameAt(SchemaNCName value, int index) {
insertDomChildAt(Attribute, null, "name", index, value.toString());
}
public void insertnameAt(String value, int index) throws Exception {
insertnameAt(new SchemaNCName(value), index);
}
public void replacenameAt(SchemaNCName value, int index) {
replaceDomChildAt(Attribute, null, "name", index, value.toString());
}
public void replacenameAt(String value, int index) throws Exception {
replacenameAt(new SchemaNCName(value), index);
}
public static int gettargetMinCount() {
return 1;
}
public static int gettargetMaxCount() {
return 1;
}
public int gettargetCount() {
return getDomChildCount(Attribute, null, "target");
}
public boolean hastarget() {
return hasDomChild(Attribute, null, "target");
}
public SchemaString newtarget() {
return new SchemaString();
}
public SchemaString gettargetAt(int index) throws Exception {
return new SchemaString(getDomNodeValue(getDomChildAt(Attribute, null, "target", index)));
}
public org.w3c.dom.Node getStartingtargetCursor() throws Exception {
return getDomFirstChild(Attribute, null, "target" );
}
public org.w3c.dom.Node getAdvancedtargetCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Attribute, null, "target", curNode );
}
public SchemaString gettargetValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaString(getDomNodeValue(curNode));
}
public SchemaString gettarget() throws Exception
{
return gettargetAt(0);
}
public void removetargetAt(int index) {
removeDomChildAt(Attribute, null, "target", index);
}
public void removetarget() {
removetargetAt(0);
}
public org.w3c.dom.Node addtarget(SchemaString value) {
if( value.isNull() )
return null;
return appendDomChild(Attribute, null, "target", value.toString());
}
public org.w3c.dom.Node addtarget(String value) throws Exception {
return addtarget(new SchemaString(value));
}
public void inserttargetAt(SchemaString value, int index) {
insertDomChildAt(Attribute, null, "target", index, value.toString());
}
public void inserttargetAt(String value, int index) throws Exception {
inserttargetAt(new SchemaString(value), index);
}
public void replacetargetAt(SchemaString value, int index) {
replaceDomChildAt(Attribute, null, "target", index, value.toString());
}
public void replacetargetAt(String value, int index) throws Exception {
replacetargetAt(new SchemaString(value), index);
}
public static int gettechnique_commonMinCount() {
return 1;
}
public static int gettechnique_commonMaxCount() {
return 1;
}
public int gettechnique_commonCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "technique_common");
}
public boolean hastechnique_common() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "technique_common");
}
public technique_commonType3 newtechnique_common() {
return new technique_commonType3(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "technique_common"));
}
public technique_commonType3 gettechnique_commonAt(int index) throws Exception {
return new technique_commonType3(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "technique_common", index));
}
public org.w3c.dom.Node getStartingtechnique_commonCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "technique_common" );
}
public org.w3c.dom.Node getAdvancedtechnique_commonCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "technique_common", curNode );
}
public technique_commonType3 gettechnique_commonValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new technique_commonType3(curNode);
}
public technique_commonType3 gettechnique_common() throws Exception
{
return gettechnique_commonAt(0);
}
public void removetechnique_commonAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "technique_common", index);
}
public void removetechnique_common() {
removetechnique_commonAt(0);
}
public org.w3c.dom.Node addtechnique_common(technique_commonType3 value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "technique_common", value);
}
public void inserttechnique_commonAt(technique_commonType3 value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "technique_common", index, value);
}
public void replacetechnique_commonAt(technique_commonType3 value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "technique_common", index, value);
}
public static int gettechniqueMinCount() {
return 0;
}
public static int gettechniqueMaxCount() {
return Integer.MAX_VALUE;
}
public int gettechniqueCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "technique");
}
public boolean hastechnique() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "technique");
}
public techniqueType5 newtechnique() {
return new techniqueType5(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "technique"));
}
public techniqueType5 gettechniqueAt(int index) throws Exception {
return new techniqueType5(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "technique", index));
}
public org.w3c.dom.Node getStartingtechniqueCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "technique" );
}
public org.w3c.dom.Node getAdvancedtechniqueCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "technique", curNode );
}
public techniqueType5 gettechniqueValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new techniqueType5(curNode);
}
public techniqueType5 gettechnique() throws Exception
{
return gettechniqueAt(0);
}
public void removetechniqueAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "technique", index);
}
public void removetechnique() {
while (hastechnique())
removetechniqueAt(0);
}
public org.w3c.dom.Node addtechnique(techniqueType5 value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "technique", value);
}
public void inserttechniqueAt(techniqueType5 value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "technique", index, value);
}
public void replacetechniqueAt(techniqueType5 value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "technique", index, value);
}
public static int getextraMinCount() {
return 0;
}
public static int getextraMaxCount() {
return Integer.MAX_VALUE;
}
public int getextraCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "extra");
}
public boolean hasextra() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "extra");
}
public extraType newextra() {
return new extraType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "extra"));
}
public extraType getextraAt(int index) throws Exception {
return new extraType(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "extra", index));
}
public org.w3c.dom.Node getStartingextraCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "extra" );
}
public org.w3c.dom.Node getAdvancedextraCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "extra", curNode );
}
public extraType getextraValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new extraType(curNode);
}
public extraType getextra() throws Exception
{
return getextraAt(0);
}
public void removeextraAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "extra", index);
}
public void removeextra() {
while (hasextra())
removeextraAt(0);
}
public org.w3c.dom.Node addextra(extraType value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "extra", value);
}
public void insertextraAt(extraType value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "extra", index, value);
}
public void replaceextraAt(extraType value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "extra", index, value);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -