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

📄 fx_annotate_common.java

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

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

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

	public float4 getfloat4() throws Exception 
 {
		return getfloat4At(0);
	}

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

	public void removefloat4() {
		removefloat4At(0);
	}

	public org.w3c.dom.Node addfloat4(float4 value) {
		if( value.isNull() )
			return null;

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

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

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

	public void insertfloat4At(String value, int index) throws Exception {
		insertfloat4At(new float4(value), index);
	}

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

	public void replacefloat4At(String value, int index) throws Exception {
		replacefloat4At(new float4(value), index);
	}

	public static int getfloat2x2MinCount() {
		return 1;
	}

	public static int getfloat2x2MaxCount() {
		return 1;
	}

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

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

	public float2x2 newfloat2x2() {
		return new float2x2();
	}

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

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

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

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

	public float2x2 getfloat2x2() throws Exception 
 {
		return getfloat2x2At(0);
	}

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

	public void removefloat2x2() {
		removefloat2x2At(0);
	}

	public org.w3c.dom.Node addfloat2x2(float2x2 value) {
		if( value.isNull() )
			return null;

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

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

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

	public void insertfloat2x2At(String value, int index) throws Exception {
		insertfloat2x2At(new float2x2(value), index);
	}

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

	public void replacefloat2x2At(String value, int index) throws Exception {
		replacefloat2x2At(new float2x2(value), index);
	}

	public static int getfloat3x3MinCount() {
		return 1;
	}

	public static int getfloat3x3MaxCount() {
		return 1;
	}

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

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

	public float3x3 newfloat3x3() {
		return new float3x3();
	}

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

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

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

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

	public float3x3 getfloat3x3() throws Exception 
 {
		return getfloat3x3At(0);
	}

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

	public void removefloat3x3() {
		removefloat3x3At(0);
	}

	public org.w3c.dom.Node addfloat3x3(float3x3 value) {
		if( value.isNull() )
			return null;

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

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

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

	public void insertfloat3x3At(String value, int index) throws Exception {
		insertfloat3x3At(new float3x3(value), index);
	}

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

	public void replacefloat3x3At(String value, int index) throws Exception {
		replacefloat3x3At(new float3x3(value), index);
	}

	public static int getfloat4x4MinCount() {
		return 1;
	}

	public static int getfloat4x4MaxCount() {
		return 1;
	}

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

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

	public float4x4 newfloat4x4() {
		return new float4x4();
	}

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

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

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

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

	public float4x4 getfloat4x4() throws Exception 
 {
		return getfloat4x4At(0);
	}

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

	public void removefloat4x4() {
		removefloat4x4At(0);
	}

	public org.w3c.dom.Node addfloat4x4(float4x4 value) {
		if( value.isNull() )
			return null;

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

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

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

	public void insertfloat4x4At(String value, int index) throws Exception {
		insertfloat4x4At(new float4x4(value), index);
	}

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

	public void replacefloat4x4At(String value, int index) throws Exception {
		replacefloat4x4At(new float4x4(value), index);
	}

	public static int getstringMinCount() {
		return 1;
	}

	public static int getstringMaxCount() {
		return 1;
	}

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

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

	public SchemaString newstring() {
		return new SchemaString();
	}

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

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

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

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

	public SchemaString getstring() throws Exception 
 {
		return getstringAt(0);
	}

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

	public void removestring() {
		removestringAt(0);
	}

	public org.w3c.dom.Node addstring(SchemaString value) {
		if( value.isNull() )
			return null;

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

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

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

	public void insertstringAt(String value, int index) throws Exception {
		insertstringAt(new SchemaString(value), index);
	}

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

	public void replacestringAt(String value, int index) throws Exception {
		replacestringAt(new SchemaString(value), index);
	}

}

⌨️ 快捷键说明

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