📄 profile_commontype.java
字号:
return new imageType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "image"));
}
public imageType getimageAt(int index) throws Exception {
return new imageType(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "image", index));
}
public org.w3c.dom.Node getStartingimageCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "image" );
}
public org.w3c.dom.Node getAdvancedimageCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "image", curNode );
}
public imageType getimageValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new imageType(curNode);
}
public imageType getimage() throws Exception
{
return getimageAt(0);
}
public void removeimageAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "image", index);
}
public void removeimage() {
removeimageAt(0);
}
public org.w3c.dom.Node addimage(imageType value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "image", value);
}
public void insertimageAt(imageType value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "image", index, value);
}
public void replaceimageAt(imageType value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "image", index, value);
}
public static int getnewparamMinCount() {
return 1;
}
public static int getnewparamMaxCount() {
return 1;
}
public int getnewparamCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "newparam");
}
public boolean hasnewparam() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "newparam");
}
public common_newparam_type newnewparam() {
return new common_newparam_type(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "newparam"));
}
public common_newparam_type getnewparamAt(int index) throws Exception {
return new common_newparam_type(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "newparam", index));
}
public org.w3c.dom.Node getStartingnewparamCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "newparam" );
}
public org.w3c.dom.Node getAdvancednewparamCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "newparam", curNode );
}
public common_newparam_type getnewparamValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new common_newparam_type(curNode);
}
public common_newparam_type getnewparam() throws Exception
{
return getnewparamAt(0);
}
public void removenewparamAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "newparam", index);
}
public void removenewparam() {
removenewparamAt(0);
}
public org.w3c.dom.Node addnewparam(common_newparam_type value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "newparam", value);
}
public void insertnewparamAt(common_newparam_type value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "newparam", index, value);
}
public void replacenewparamAt(common_newparam_type value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "newparam", index, value);
}
public static int gettechniqueMinCount() {
return 1;
}
public static int gettechniqueMaxCount() {
return 1;
}
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 techniqueType2 newtechnique() {
return new techniqueType2(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "technique"));
}
public techniqueType2 gettechniqueAt(int index) throws Exception {
return new techniqueType2(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 techniqueType2 gettechniqueValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new techniqueType2(curNode);
}
public techniqueType2 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() {
removetechniqueAt(0);
}
public org.w3c.dom.Node addtechnique(techniqueType2 value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "technique", value);
}
public void inserttechniqueAt(techniqueType2 value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "technique", index, value);
}
public void replacetechniqueAt(techniqueType2 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 + -