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

📄 instance_effecttype.java

📁 java 3d game jme 工程开发源代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
	}

	public SchemaNCName getnameAt(int index) throws Exception {
		return new SchemaNCName(getDomNodeValue(getDomChildAt(Attribute, null, "name", index)));
	}

	public org.w3c.dom.Node getStartingnameCursor() throws Exception {
		return getDomFirstChild(Attribute, null, "name" );
	}

	public org.w3c.dom.Node getAdvancednameCursor( org.w3c.dom.Node curNode ) throws Exception {
		return getDomNextChild( Attribute, null, "name", curNode );
	}

	public SchemaNCName getnameValueAtCursor( 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 getname() throws Exception 
 {
		return getnameAt(0);
	}

	public void removenameAt(int index) {
		removeDomChildAt(Attribute, null, "name", index);
	}

	public void removename() {
		removenameAt(0);
	}

	public org.w3c.dom.Node addname(SchemaNCName value) {
		if( value.isNull() )
			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 gettechnique_hintMinCount() {
		return 0;
	}

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

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

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

	public technique_hintType newtechnique_hint() {
		return new technique_hintType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "technique_hint"));
	}

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

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

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

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

	public technique_hintType gettechnique_hint() throws Exception 
 {
		return gettechnique_hintAt(0);
	}

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

	public void removetechnique_hint() {
		while (hastechnique_hint())
			removetechnique_hintAt(0);
	}

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

	public void inserttechnique_hintAt(technique_hintType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "technique_hint", index, value);
	}

	public void replacetechnique_hintAt(technique_hintType value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "technique_hint", index, value);
	}

	public static int getsetparamMinCount() {
		return 0;
	}

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

	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 setparamType newsetparam() {
		return new setparamType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "setparam"));
	}

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

	public setparamType 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() {
		while (hassetparam())
			removesetparamAt(0);
	}

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

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

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