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

📄 technique_commontype9.java

📁 java 3d game jme 工程开发源代码
💻 JAVA
字号:
/**
 * technique_commonType9.java
 *
 * This file was generated by XMLSpy 2007sp2 Enterprise Edition.
 *
 * YOU SHOULD NOT MODIFY THIS FILE, BECAUSE IT WILL BE
 * OVERWRITTEN WHEN YOU RE-RUN CODE GENERATION.
 *
 * Refer to the XMLSpy Documentation for further details.
 * http://www.altova.com/xmlspy
 */


package com.jmex.model.collada.schema;


public class technique_commonType9 extends com.jmex.xml.xml.Node {

	public technique_commonType9(technique_commonType9 node) {
		super(node);
	}

	public technique_commonType9(org.w3c.dom.Node node) {
		super(node);
	}

	public technique_commonType9(org.w3c.dom.Document doc) {
		super(doc);
	}

	public technique_commonType9(com.jmex.xml.xml.Document doc, String namespaceURI, String prefix, String name) {
		super(doc, namespaceURI, prefix, name);
	}
	
	public void adjustPrefix() {
		for (	org.w3c.dom.Node tmpNode = getDomFirstChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "accessor" );
				tmpNode != null;
				tmpNode = getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "accessor", tmpNode )
			) {
			internalAdjustPrefix(tmpNode, true);
			new accessorType(tmpNode).adjustPrefix();
		}
	}
	public void setXsiType() {
 		org.w3c.dom.Element el = (org.w3c.dom.Element) domNode;
		el.setAttributeNS("http://www.w3.org/2001/XMLSchema-instance", "xsi:type", "technique_common");
	}

	public static int getaccessorMinCount() {
		return 1;
	}

	public static int getaccessorMaxCount() {
		return 1;
	}

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

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

	public accessorType newaccessor() {
		return new accessorType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "accessor"));
	}

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

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

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

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

	public accessorType getaccessor() throws Exception 
 {
		return getaccessorAt(0);
	}

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

	public void removeaccessor() {
		removeaccessorAt(0);
	}

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

	public void insertaccessorAt(accessorType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "accessor", index, value);
	}

	public void replaceaccessorAt(accessorType value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "accessor", index, value);
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -