passtype2.java
来自「java 3d game jme 工程开发源代码」· Java 代码 · 共 1,587 行 · 第 1/5 页
JAVA
1,587 行
public fx_draw_common getdraw() throws Exception
{
return getdrawAt(0);
}
public void removedrawAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "draw", index);
}
public void removedraw() {
removedrawAt(0);
}
public org.w3c.dom.Node adddraw(fx_draw_common value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "draw", value.toString());
}
public org.w3c.dom.Node adddraw(String value) throws Exception {
return adddraw(new fx_draw_common(value));
}
public void insertdrawAt(fx_draw_common value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "draw", index, value.toString());
}
public void insertdrawAt(String value, int index) throws Exception {
insertdrawAt(new fx_draw_common(value), index);
}
public void replacedrawAt(fx_draw_common value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "draw", index, value.toString());
}
public void replacedrawAt(String value, int index) throws Exception {
replacedrawAt(new fx_draw_common(value), index);
}
public static int getalpha_funcMinCount() {
return 1;
}
public static int getalpha_funcMaxCount() {
return 1;
}
public int getalpha_funcCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "alpha_func");
}
public boolean hasalpha_func() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "alpha_func");
}
public alpha_funcType2 newalpha_func() {
return new alpha_funcType2(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "alpha_func"));
}
public alpha_funcType2 getalpha_funcAt(int index) throws Exception {
return new alpha_funcType2(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "alpha_func", index));
}
public org.w3c.dom.Node getStartingalpha_funcCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "alpha_func" );
}
public org.w3c.dom.Node getAdvancedalpha_funcCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "alpha_func", curNode );
}
public alpha_funcType2 getalpha_funcValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new alpha_funcType2(curNode);
}
public alpha_funcType2 getalpha_func() throws Exception
{
return getalpha_funcAt(0);
}
public void removealpha_funcAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "alpha_func", index);
}
public void removealpha_func() {
removealpha_funcAt(0);
}
public org.w3c.dom.Node addalpha_func(alpha_funcType2 value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "alpha_func", value);
}
public void insertalpha_funcAt(alpha_funcType2 value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "alpha_func", index, value);
}
public void replacealpha_funcAt(alpha_funcType2 value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "alpha_func", index, value);
}
public static int getblend_funcMinCount() {
return 1;
}
public static int getblend_funcMaxCount() {
return 1;
}
public int getblend_funcCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "blend_func");
}
public boolean hasblend_func() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "blend_func");
}
public blend_funcType2 newblend_func() {
return new blend_funcType2(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "blend_func"));
}
public blend_funcType2 getblend_funcAt(int index) throws Exception {
return new blend_funcType2(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "blend_func", index));
}
public org.w3c.dom.Node getStartingblend_funcCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "blend_func" );
}
public org.w3c.dom.Node getAdvancedblend_funcCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "blend_func", curNode );
}
public blend_funcType2 getblend_funcValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new blend_funcType2(curNode);
}
public blend_funcType2 getblend_func() throws Exception
{
return getblend_funcAt(0);
}
public void removeblend_funcAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "blend_func", index);
}
public void removeblend_func() {
removeblend_funcAt(0);
}
public org.w3c.dom.Node addblend_func(blend_funcType2 value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "blend_func", value);
}
public void insertblend_funcAt(blend_funcType2 value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "blend_func", index, value);
}
public void replaceblend_funcAt(blend_funcType2 value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "blend_func", index, value);
}
public static int getclear_colorMinCount() {
return 1;
}
public static int getclear_colorMaxCount() {
return 1;
}
public int getclear_colorCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_color");
}
public boolean hasclear_color() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_color");
}
public clear_colorType2 newclear_color() {
return new clear_colorType2(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "clear_color"));
}
public clear_colorType2 getclear_colorAt(int index) throws Exception {
return new clear_colorType2(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_color", index));
}
public org.w3c.dom.Node getStartingclear_colorCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_color" );
}
public org.w3c.dom.Node getAdvancedclear_colorCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_color", curNode );
}
public clear_colorType2 getclear_colorValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new clear_colorType2(curNode);
}
public clear_colorType2 getclear_color() throws Exception
{
return getclear_colorAt(0);
}
public void removeclear_colorAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_color", index);
}
public void removeclear_color() {
removeclear_colorAt(0);
}
public org.w3c.dom.Node addclear_color(clear_colorType2 value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "clear_color", value);
}
public void insertclear_colorAt(clear_colorType2 value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "clear_color", index, value);
}
public void replaceclear_colorAt(clear_colorType2 value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "clear_color", index, value);
}
public static int getclear_stencilMinCount() {
return 1;
}
public static int getclear_stencilMaxCount() {
return 1;
}
public int getclear_stencilCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_stencil");
}
public boolean hasclear_stencil() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_stencil");
}
public clear_stencilType2 newclear_stencil() {
return new clear_stencilType2(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "clear_stencil"));
}
public clear_stencilType2 getclear_stencilAt(int index) throws Exception {
return new clear_stencilType2(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_stencil", index));
}
public org.w3c.dom.Node getStartingclear_stencilCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_stencil" );
}
public org.w3c.dom.Node getAdvancedclear_stencilCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_stencil", curNode );
}
public clear_stencilType2 getclear_stencilValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new clear_stencilType2(curNode);
}
public clear_stencilType2 getclear_stencil() throws Exception
{
return getclear_stencilAt(0);
}
public void removeclear_stencilAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_stencil", index);
}
public void removeclear_stencil() {
removeclear_stencilAt(0);
}
public org.w3c.dom.Node addclear_stencil(clear_stencilType2 value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "clear_stencil", value);
}
public void insertclear_stencilAt(clear_stencilType2 value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "clear_stencil", index, value);
}
public void replaceclear_stencilAt(clear_stencilType2 value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "clear_stencil", index, value);
}
public static int getclear_depthMinCount() {
return 1;
}
public static int getclear_depthMaxCount() {
return 1;
}
public int getclear_depthCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_depth");
}
public boolean hasclear_depth() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "clear_depth");
}
public clear_depthType2 newclear_depth() {
return new clear_depthType2(domNode.getOwnerDocument().createElementNS("ht
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?