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

📄 animationtype.java

📁 java 3d game jme 工程开发源代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
	public static int getsourceMaxCount() {
		return Integer.MAX_VALUE;
	}

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

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

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

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

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

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

	public sourceType getsourceValueAtCursor( 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 getsource() throws Exception 
 {
		return getsourceAt(0);
	}

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

	public void removesource() {
		while (hassource())
			removesourceAt(0);
	}

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

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

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

	public static int getsamplerMinCount() {
		return 1;
	}

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

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

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

	public samplerType newsampler() {
		return new samplerType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "sampler"));
	}

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

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

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

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

	public samplerType getsampler() throws Exception 
 {
		return getsamplerAt(0);
	}

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

	public void removesampler() {
		while (hassampler())
			removesamplerAt(0);
	}

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

	public void insertsamplerAt(samplerType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "sampler", index, value);
	}

	public void replacesamplerAt(samplerType value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "sampler", index, value);
	}

	public static int getchannelMinCount() {
		return 1;
	}

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

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

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

	public channelType newchannel() {
		return new channelType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "channel"));
	}

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

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

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

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

	public channelType getchannel() throws Exception 
 {
		return getchannelAt(0);
	}

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

	public void removechannel() {
		while (haschannel())
			removechannelAt(0);
	}

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

	public void insertchannelAt(channelType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "channel", index, value);
	}

	public void replacechannelAt(channelType value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "channel", index, value);
	}

	public static int getanimationMinCount() {
		return 0;
	}

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

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

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

	public animationType newanimation() {
		return new animationType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "animation"));
	}

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

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

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

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

	public animationType getanimation() throws Exception 
 {
		return getanimationAt(0);
	}

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

	public void removeanimation() {
		while (hasanimation())
			removeanimationAt(0);
	}

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

	public void insertanimationAt(animationType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "animation", index, value);
	}

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