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

📄 cameratype.java

📁 java 3d game jme 工程开发源代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
		return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "asset");
	}

	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 getopticsMinCount() {
		return 1;
	}

	public static int getopticsMaxCount() {
		return 1;
	}

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

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

	public opticsType newoptics() {
		return new opticsType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "optics"));
	}

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

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

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

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

	public opticsType getoptics() throws Exception 
 {
		return getopticsAt(0);
	}

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

	public void removeoptics() {
		removeopticsAt(0);
	}

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

	public void insertopticsAt(opticsType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "optics", index, value);
	}

	public void replaceopticsAt(opticsType value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "optics", index, value);
	}

	public static int getimagerMinCount() {
		return 0;
	}

	public static int getimagerMaxCount() {
		return 1;
	}

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

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

	public imagerType newimager() {
		return new imagerType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "imager"));
	}

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

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

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

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

	public imagerType getimager() throws Exception 
 {
		return getimagerAt(0);
	}

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

	public void removeimager() {
		removeimagerAt(0);
	}

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

	public void insertimagerAt(imagerType value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "imager", index, value);
	}

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