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

📄 fx_annotate_common.java

📁 java 3d game jme 工程开发源代码
💻 JAVA
📖 第 1 页 / 共 4 页
字号:
	public void removeint3() {
		removeint3At(0);
	}

	public org.w3c.dom.Node addint3(int3 value) {
		if( value.isNull() )
			return null;

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

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

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

	public void insertint3At(String value, int index) throws Exception {
		insertint3At(new int3(value), index);
	}

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

	public void replaceint3At(String value, int index) throws Exception {
		replaceint3At(new int3(value), index);
	}

	public static int getint4MinCount() {
		return 1;
	}

	public static int getint4MaxCount() {
		return 1;
	}

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

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

	public int4 newint4() {
		return new int4();
	}

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

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

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

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

	public int4 getint4() throws Exception 
 {
		return getint4At(0);
	}

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

	public void removeint4() {
		removeint4At(0);
	}

	public org.w3c.dom.Node addint4(int4 value) {
		if( value.isNull() )
			return null;

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

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

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

	public void insertint4At(String value, int index) throws Exception {
		insertint4At(new int4(value), index);
	}

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

	public void replaceint4At(String value, int index) throws Exception {
		replaceint4At(new int4(value), index);
	}

	public static int getfloat2MinCount() {
		return 1;
	}

	public static int getfloat2MaxCount() {
		return 1;
	}

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

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

	public float2 newfloat2() {
		return new float2();
	}

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

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

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

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

	public float2 getfloat2() throws Exception 
 {
		return getfloat2At(0);
	}

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

	public void removefloat2() {
		removefloat2At(0);
	}

	public org.w3c.dom.Node addfloat2(float2 value) {
		if( value.isNull() )
			return null;

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

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

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

	public void insertfloat2At(String value, int index) throws Exception {
		insertfloat2At(new float2(value), index);
	}

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

	public void replacefloat2At(String value, int index) throws Exception {
		replacefloat2At(new float2(value), index);
	}

	public static int getfloat22MinCount() {
		return 1;
	}

	public static int getfloat22MaxCount() {
		return 1;
	}

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

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

	public float22 newfloat22() {
		return new float22();
	}

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

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

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

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

	public float22 getfloat22() throws Exception 
 {
		return getfloat22At(0);
	}

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

	public void removefloat22() {
		removefloat22At(0);
	}

	public org.w3c.dom.Node addfloat22(float22 value) {
		if( value.isNull() )
			return null;

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

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

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

	public void insertfloat22At(String value, int index) throws Exception {
		insertfloat22At(new float22(value), index);
	}

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

	public void replacefloat22At(String value, int index) throws Exception {
		replacefloat22At(new float22(value), index);
	}

	public static int getfloat3MinCount() {
		return 1;
	}

	public static int getfloat3MaxCount() {
		return 1;
	}

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

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

	public float3 newfloat3() {
		return new float3();
	}

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

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

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

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

	public float3 getfloat3() throws Exception 
 {
		return getfloat3At(0);
	}

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

	public void removefloat3() {
		removefloat3At(0);
	}

	public org.w3c.dom.Node addfloat3(float3 value) {
		if( value.isNull() )
			return null;

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

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

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

	public void insertfloat3At(String value, int index) throws Exception {
		insertfloat3At(new float3(value), index);
	}

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

	public void replacefloat3At(String value, int index) throws Exception {
		replacefloat3At(new float3(value), index);
	}

	public static int getfloat4MinCount() {
		return 1;
	}

	public static int getfloat4MaxCount() {
		return 1;
	}

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

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

	public float4 newfloat4() {
		return new float4();
	}

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

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

⌨️ 快捷键说明

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