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

📄 shadertype2.java

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

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

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

	public compiler_targetType2 getcompiler_target() throws Exception 
 {
		return getcompiler_targetAt(0);
	}

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

	public void removecompiler_target() {
		removecompiler_targetAt(0);
	}

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

	public void insertcompiler_targetAt(compiler_targetType2 value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "compiler_target", index, value);
	}

	public void replacecompiler_targetAt(compiler_targetType2 value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "compiler_target", index, value);
	}

	public static int getcompiler_optionsMinCount() {
		return 0;
	}

	public static int getcompiler_optionsMaxCount() {
		return 1;
	}

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

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

	public SchemaString newcompiler_options() {
		return new SchemaString();
	}

	public SchemaString getcompiler_optionsAt(int index) throws Exception {
		return new SchemaString(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "compiler_options", index)));
	}

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

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

	public SchemaString getcompiler_optionsValueAtCursor( 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 getcompiler_options() throws Exception 
 {
		return getcompiler_optionsAt(0);
	}

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

	public void removecompiler_options() {
		removecompiler_optionsAt(0);
	}

	public org.w3c.dom.Node addcompiler_options(SchemaString value) {
		if( value.isNull() )
			return null;

		return  appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "compiler_options", value.toString());
	}

	public org.w3c.dom.Node addcompiler_options(String value) throws Exception {
		return addcompiler_options(new SchemaString(value));
	}

	public void insertcompiler_optionsAt(SchemaString value, int index) {
		insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "compiler_options", index, value.toString());
	}

	public void insertcompiler_optionsAt(String value, int index) throws Exception {
		insertcompiler_optionsAt(new SchemaString(value), index);
	}

	public void replacecompiler_optionsAt(SchemaString value, int index) {
		replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "compiler_options", index, value.toString());
	}

	public void replacecompiler_optionsAt(String value, int index) throws Exception {
		replacecompiler_optionsAt(new SchemaString(value), index);
	}

	public static int getnameMinCount() {
		return 1;
	}

	public static int getnameMaxCount() {
		return 1;
	}

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

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

	public nameType4 newname() {
		return new nameType4(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "name"));
	}

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

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

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

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

	public nameType4 getname() throws Exception 
 {
		return getnameAt(0);
	}

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

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

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

	public void insertnameAt(nameType4 value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "name", index, value);
	}

	public void replacenameAt(nameType4 value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "name", index, value);
	}

	public static int getbindMinCount() {
		return 0;
	}

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

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

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

	public bindType3 newbind() {
		return new bindType3(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "bind"));
	}

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

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

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

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

	public bindType3 getbind() throws Exception 
 {
		return getbindAt(0);
	}

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

	public void removebind() {
		while (hasbind())
			removebindAt(0);
	}

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

	public void insertbindAt(bindType3 value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "bind", index, value);
	}

	public void replacebindAt(bindType3 value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "bind", index, value);
	}

}

⌨️ 快捷键说明

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