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

📄 visual_scenetype.java

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

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

	public assetType newasset() {
		return new assetType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "asset"));
	}

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

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

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

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

	public assetType getasset() throws Exception 
 {
		return getassetAt(0);
	}

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

	public void removeasset() {
		removeassetAt(0);
	}

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

	public void insertassetAt(assetType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "asset", index, value);
	}

	public void replaceassetAt(assetType value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "asset", index, value);
	}

	public static int getnodeMinCount() {
		return 1;
	}

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

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

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

	public nodeType2 newnode() {
		return new nodeType2(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "node"));
	}

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

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

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

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

	public nodeType2 getnode() throws Exception 
 {
		return getnodeAt(0);
	}

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

	public void removenode() {
		while (hasnode())
			removenodeAt(0);
	}

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

	public void insertnodeAt(nodeType2 value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "node", index, value);
	}

	public void replacenodeAt(nodeType2 value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "node", index, value);
	}

	public static int getevaluate_sceneMinCount() {
		return 0;
	}

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

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

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

	public evaluate_sceneType newevaluate_scene() {
		return new evaluate_sceneType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "evaluate_scene"));
	}

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

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

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

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

	public evaluate_sceneType getevaluate_scene() throws Exception 
 {
		return getevaluate_sceneAt(0);
	}

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

	public void removeevaluate_scene() {
		while (hasevaluate_scene())
			removeevaluate_sceneAt(0);
	}

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

	public void insertevaluate_sceneAt(evaluate_sceneType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "evaluate_scene", index, value);
	}

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