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

📄 skintype.java

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

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

	public sourceType newsource2() {
		return new sourceType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "source"));
	}

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

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

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

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

	public sourceType getsource2() throws Exception 
 {
		return getsource2At(0);
	}

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

	public void removesource2() {
		while (hassource2())
			removesource2At(0);
	}

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

	public void insertsource2At(sourceType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "source", index, value);
	}

	public void replacesource2At(sourceType value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "source", index, value);
	}

	public static int getjointsMinCount() {
		return 1;
	}

	public static int getjointsMaxCount() {
		return 1;
	}

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

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

	public jointsType newjoints() {
		return new jointsType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "joints"));
	}

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

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

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

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

	public jointsType getjoints() throws Exception 
 {
		return getjointsAt(0);
	}

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

	public void removejoints() {
		removejointsAt(0);
	}

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

	public void insertjointsAt(jointsType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "joints", index, value);
	}

	public void replacejointsAt(jointsType value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "joints", index, value);
	}

	public static int getvertex_weightsMinCount() {
		return 1;
	}

	public static int getvertex_weightsMaxCount() {
		return 1;
	}

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

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

	public vertex_weightsType newvertex_weights() {
		return new vertex_weightsType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "vertex_weights"));
	}

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

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

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

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

	public vertex_weightsType getvertex_weights() throws Exception 
 {
		return getvertex_weightsAt(0);
	}

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

	public void removevertex_weights() {
		removevertex_weightsAt(0);
	}

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

	public void insertvertex_weightsAt(vertex_weightsType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "vertex_weights", index, value);
	}

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