⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 techniquetype.java

📁 java 3d game jme 工程开发源代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
	public org.w3c.dom.Node getStartingcodeCursor() throws Exception {
		return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "code" );
	}

	public org.w3c.dom.Node getAdvancedcodeCursor( org.w3c.dom.Node curNode ) throws Exception {
		return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "code", curNode );
	}

	public fx_code_profile getcodeValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
		if( curNode == null )
			throw new com.jmex.xml.xml.XmlException("Out of range");
		else
			return new fx_code_profile(curNode);
	}

	public fx_code_profile getcode() throws Exception 
 {
		return getcodeAt(0);
	}

	public void removecodeAt(int index) {
		removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "code", index);
	}

	public void removecode() {
		removecodeAt(0);
	}

	public org.w3c.dom.Node addcode(fx_code_profile value) {
		return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "code", value);
	}

	public void insertcodeAt(fx_code_profile value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "code", index, value);
	}

	public void replacecodeAt(fx_code_profile value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "code", index, value);
	}

	public static int getincludeMinCount() {
		return 1;
	}

	public static int getincludeMaxCount() {
		return 1;
	}

	public int getincludeCount() {
		return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "include");
	}

	public boolean hasinclude() {
		return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "include");
	}

	public fx_include_common newinclude() {
		return new fx_include_common(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "include"));
	}

	public fx_include_common getincludeAt(int index) throws Exception {
		return new fx_include_common(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "include", index));
	}

	public org.w3c.dom.Node getStartingincludeCursor() throws Exception {
		return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "include" );
	}

	public org.w3c.dom.Node getAdvancedincludeCursor( org.w3c.dom.Node curNode ) throws Exception {
		return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "include", curNode );
	}

	public fx_include_common getincludeValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
		if( curNode == null )
			throw new com.jmex.xml.xml.XmlException("Out of range");
		else
			return new fx_include_common(curNode);
	}

	public fx_include_common getinclude() throws Exception 
 {
		return getincludeAt(0);
	}

	public void removeincludeAt(int index) {
		removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "include", index);
	}

	public void removeinclude() {
		removeincludeAt(0);
	}

	public org.w3c.dom.Node addinclude(fx_include_common value) {
		return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "include", value);
	}

	public void insertincludeAt(fx_include_common value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "include", index, value);
	}

	public void replaceincludeAt(fx_include_common value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "include", index, value);
	}

	public static int getimageMinCount() {
		return 1;
	}

	public static int getimageMaxCount() {
		return 1;
	}

	public int getimageCount() {
		return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "image");
	}

	public boolean hasimage() {
		return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "image");
	}

	public imageType newimage() {
		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 cg_newparam newnewparam() {
		return new cg_newparam(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "newparam"));
	}

	public cg_newparam getnewparamAt(int index) throws Exception {
		return new cg_newparam(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 cg_newparam getnewparamValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
		if( curNode == null )
			throw new com.jmex.xml.xml.XmlException("Out of range");
		else
			return new cg_newparam(curNode);
	}

	public cg_newparam 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(cg_newparam value) {
		return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "newparam", value);
	}

	public void insertnewparamAt(cg_newparam value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "newparam", index, value);
	}

	public void replacenewparamAt(cg_newparam value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "newparam", index, value);
	}

	public static int getsetparamMinCount() {
		return 1;
	}

	public static int getsetparamMaxCount() {
		return 1;
	}

	public int getsetparamCount() {
		return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "setparam");
	}

	public boolean hassetparam() {
		return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "setparam");
	}

	public cg_setparam newsetparam() {
		return new cg_setparam(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "setparam"));
	}

	public cg_setparam getsetparamAt(int index) throws Exception {
		return new cg_setparam(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "setparam", index));
	}

	public org.w3c.dom.Node getStartingsetparamCursor() throws Exception {
		return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "setparam" );
	}

	public org.w3c.dom.Node getAdvancedsetparamCursor( org.w3c.dom.Node curNode ) throws Exception {
		return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "setparam", curNode );
	}

	public cg_setparam getsetparamValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
		if( curNode == null )
			throw new com.jmex.xml.xml.XmlException("Out of range");
		else
			return new cg_setparam(curNode);
	}

	public cg_setparam getsetparam() throws Exception 
 {
		return getsetparamAt(0);
	}

	public void removesetparamAt(int index) {
		removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "setparam", index);
	}

	public void removesetparam() {
		removesetparamAt(0);
	}

	public org.w3c.dom.Node addsetparam(cg_setparam value) {
		return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "setparam", value);
	}

	public void insertsetparamAt(cg_setparam value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "setparam", index, value);
	}

	public void replacesetparamAt(cg_setparam value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "setparam", index, value);
	}

	public static int getpassMinCount() {
		return 1;
	}

	public static int getpassMaxCount() {
		return Integer.MAX_VALUE;
	}

	public int getpassCount() {
		return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "pass");
	}

	public boolean haspass() {
		return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "pass");
	}

	public passType newpass() {
		return new passType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "pass"));
	}

	public passType getpassAt(int index) throws Exception {
		return new passType(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "pass", index));
	}

	public org.w3c.dom.Node getStartingpassCursor() throws Exception {
		return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "pass" );
	}

	public org.w3c.dom.Node getAdvancedpassCursor( org.w3c.dom.Node curNode ) throws Exception {
		return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "pass", curNode );
	}

	public passType getpassValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
		if( curNode == null )
			throw new com.jmex.xml.xml.XmlException("Out of range");
		else
			return new passType(curNode);
	}

	public passType getpass() throws Exception 
 {
		return getpassAt(0);
	}

	public void removepassAt(int index) {
		removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "pass", index);
	}

	public void removepass() {
		while (haspass())
			removepassAt(0);
	}

	public org.w3c.dom.Node addpass(passType value) {
		return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "pass", value);
	}

	public void insertpassAt(passType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "pass", index, value);
	}

	public void replacepassAt(passType value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "pass", 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 + -