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

📄 blinntype.java

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

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

	public common_float_or_param_type newshininess() {
		return new common_float_or_param_type(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "shininess"));
	}

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

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

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

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

	public common_float_or_param_type getshininess() throws Exception 
 {
		return getshininessAt(0);
	}

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

	public void removeshininess() {
		removeshininessAt(0);
	}

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

	public void insertshininessAt(common_float_or_param_type value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "shininess", index, value);
	}

	public void replaceshininessAt(common_float_or_param_type value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "shininess", index, value);
	}

	public static int getreflectiveMinCount() {
		return 0;
	}

	public static int getreflectiveMaxCount() {
		return 1;
	}

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

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

	public common_color_or_texture_type newreflective() {
		return new common_color_or_texture_type(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "reflective"));
	}

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

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

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

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

	public common_color_or_texture_type getreflective() throws Exception 
 {
		return getreflectiveAt(0);
	}

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

	public void removereflective() {
		removereflectiveAt(0);
	}

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

	public void insertreflectiveAt(common_color_or_texture_type value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "reflective", index, value);
	}

	public void replacereflectiveAt(common_color_or_texture_type value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "reflective", index, value);
	}

	public static int getreflectivityMinCount() {
		return 0;
	}

	public static int getreflectivityMaxCount() {
		return 1;
	}

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

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

	public common_float_or_param_type newreflectivity() {
		return new common_float_or_param_type(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "reflectivity"));
	}

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

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

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

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

	public common_float_or_param_type getreflectivity() throws Exception 
 {
		return getreflectivityAt(0);
	}

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

	public void removereflectivity() {
		removereflectivityAt(0);
	}

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

	public void insertreflectivityAt(common_float_or_param_type value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "reflectivity", index, value);
	}

	public void replacereflectivityAt(common_float_or_param_type value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "reflectivity", index, value);
	}

	public static int gettransparentMinCount() {
		return 0;
	}

	public static int gettransparentMaxCount() {
		return 1;
	}

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

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

	public common_transparent_type newtransparent() {
		return new common_transparent_type(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "transparent"));
	}

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

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

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

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

	public common_transparent_type gettransparent() throws Exception 
 {
		return gettransparentAt(0);
	}

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

	public void removetransparent() {
		removetransparentAt(0);
	}

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

	public void inserttransparentAt(common_transparent_type value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "transparent", index, value);
	}

	public void replacetransparentAt(common_transparent_type value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "transparent", index, value);
	}

	public static int gettransparencyMinCount() {
		return 0;
	}

	public static int gettransparencyMaxCount() {
		return 1;
	}

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

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

	public common_float_or_param_type newtransparency() {
		return new common_float_or_param_type(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "transparency"));
	}

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

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

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

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

	public common_float_or_param_type gettransparency() throws Exception 
 {
		return gettransparencyAt(0);
	}

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

	public void removetransparency() {
		removetransparencyAt(0);
	}

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

	public void inserttransparencyAt(common_float_or_param_type value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "transparency", index, value);
	}

	public void replacetransparencyAt(common_float_or_param_type value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "transparency", index, value);
	}

	public static int getindex_of_refractionMinCount() {
		return 0;
	}

	public static int getindex_of_refractionMaxCount() {
		return 1;
	}

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

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

	public common_float_or_param_type newindex_of_refraction() {
		return new common_float_or_param_type(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "index_of_refraction"));
	}

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

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

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

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

	public common_float_or_param_type getindex_of_refraction() throws Exception 
 {
		return getindex_of_refractionAt(0);
	}

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

	public void removeindex_of_refraction() {
		removeindex_of_refractionAt(0);
	}

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

	public void insertindex_of_refractionAt(common_float_or_param_type value, int index) {
		insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "index_of_refraction", index, value);
	}

	public void replaceindex_of_refractionAt(common_float_or_param_type value, int index) {
		replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "index_of_refraction", index, value);
	}

}

⌨️ 快捷键说明

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