📄 gles_sampler_state.java
字号:
public void insertminfilterAt(fx_sampler_filter_common value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "minfilter", index, value.toString());
}
public void insertminfilterAt(String value, int index) throws Exception {
insertminfilterAt(new fx_sampler_filter_common(value), index);
}
public void replaceminfilterAt(fx_sampler_filter_common value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "minfilter", index, value.toString());
}
public void replaceminfilterAt(String value, int index) throws Exception {
replaceminfilterAt(new fx_sampler_filter_common(value), index);
}
public static int getmagfilterMinCount() {
return 0;
}
public static int getmagfilterMaxCount() {
return 1;
}
public int getmagfilterCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "magfilter");
}
public boolean hasmagfilter() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "magfilter");
}
public fx_sampler_filter_common newmagfilter() {
return new fx_sampler_filter_common();
}
public fx_sampler_filter_common getmagfilterAt(int index) throws Exception {
return new fx_sampler_filter_common(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "magfilter", index)));
}
public org.w3c.dom.Node getStartingmagfilterCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "magfilter" );
}
public org.w3c.dom.Node getAdvancedmagfilterCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "magfilter", curNode );
}
public fx_sampler_filter_common getmagfilterValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new fx_sampler_filter_common(getDomNodeValue(curNode));
}
public fx_sampler_filter_common getmagfilter() throws Exception
{
return getmagfilterAt(0);
}
public void removemagfilterAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "magfilter", index);
}
public void removemagfilter() {
removemagfilterAt(0);
}
public org.w3c.dom.Node addmagfilter(fx_sampler_filter_common value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "magfilter", value.toString());
}
public org.w3c.dom.Node addmagfilter(String value) throws Exception {
return addmagfilter(new fx_sampler_filter_common(value));
}
public void insertmagfilterAt(fx_sampler_filter_common value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "magfilter", index, value.toString());
}
public void insertmagfilterAt(String value, int index) throws Exception {
insertmagfilterAt(new fx_sampler_filter_common(value), index);
}
public void replacemagfilterAt(fx_sampler_filter_common value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "magfilter", index, value.toString());
}
public void replacemagfilterAt(String value, int index) throws Exception {
replacemagfilterAt(new fx_sampler_filter_common(value), index);
}
public static int getmipfilterMinCount() {
return 0;
}
public static int getmipfilterMaxCount() {
return 1;
}
public int getmipfilterCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipfilter");
}
public boolean hasmipfilter() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipfilter");
}
public fx_sampler_filter_common newmipfilter() {
return new fx_sampler_filter_common();
}
public fx_sampler_filter_common getmipfilterAt(int index) throws Exception {
return new fx_sampler_filter_common(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipfilter", index)));
}
public org.w3c.dom.Node getStartingmipfilterCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipfilter" );
}
public org.w3c.dom.Node getAdvancedmipfilterCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "mipfilter", curNode );
}
public fx_sampler_filter_common getmipfilterValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new fx_sampler_filter_common(getDomNodeValue(curNode));
}
public fx_sampler_filter_common getmipfilter() throws Exception
{
return getmipfilterAt(0);
}
public void removemipfilterAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipfilter", index);
}
public void removemipfilter() {
removemipfilterAt(0);
}
public org.w3c.dom.Node addmipfilter(fx_sampler_filter_common value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipfilter", value.toString());
}
public org.w3c.dom.Node addmipfilter(String value) throws Exception {
return addmipfilter(new fx_sampler_filter_common(value));
}
public void insertmipfilterAt(fx_sampler_filter_common value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipfilter", index, value.toString());
}
public void insertmipfilterAt(String value, int index) throws Exception {
insertmipfilterAt(new fx_sampler_filter_common(value), index);
}
public void replacemipfilterAt(fx_sampler_filter_common value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipfilter", index, value.toString());
}
public void replacemipfilterAt(String value, int index) throws Exception {
replacemipfilterAt(new fx_sampler_filter_common(value), index);
}
public static int getmipmap_maxlevelMinCount() {
return 0;
}
public static int getmipmap_maxlevelMaxCount() {
return 1;
}
public int getmipmap_maxlevelCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_maxlevel");
}
public boolean hasmipmap_maxlevel() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_maxlevel");
}
public SchemaShort newmipmap_maxlevel() {
return new SchemaShort();
}
public SchemaShort getmipmap_maxlevelAt(int index) throws Exception {
return new SchemaShort(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_maxlevel", index)));
}
public org.w3c.dom.Node getStartingmipmap_maxlevelCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_maxlevel" );
}
public org.w3c.dom.Node getAdvancedmipmap_maxlevelCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_maxlevel", curNode );
}
public SchemaShort getmipmap_maxlevelValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaShort(getDomNodeValue(curNode));
}
public SchemaShort getmipmap_maxlevel() throws Exception
{
return getmipmap_maxlevelAt(0);
}
public void removemipmap_maxlevelAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_maxlevel", index);
}
public void removemipmap_maxlevel() {
removemipmap_maxlevelAt(0);
}
public org.w3c.dom.Node addmipmap_maxlevel(SchemaShort value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_maxlevel", value.toString());
}
public org.w3c.dom.Node addmipmap_maxlevel(String value) throws Exception {
return addmipmap_maxlevel(new SchemaShort(value));
}
public void insertmipmap_maxlevelAt(SchemaShort value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_maxlevel", index, value.toString());
}
public void insertmipmap_maxlevelAt(String value, int index) throws Exception {
insertmipmap_maxlevelAt(new SchemaShort(value), index);
}
public void replacemipmap_maxlevelAt(SchemaShort value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_maxlevel", index, value.toString());
}
public void replacemipmap_maxlevelAt(String value, int index) throws Exception {
replacemipmap_maxlevelAt(new SchemaShort(value), index);
}
public static int getmipmap_biasMinCount() {
return 0;
}
public static int getmipmap_biasMaxCount() {
return 1;
}
public int getmipmap_biasCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_bias");
}
public boolean hasmipmap_bias() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_bias");
}
public SchemaFloat newmipmap_bias() {
return new SchemaFloat();
}
public SchemaFloat getmipmap_biasAt(int index) throws Exception {
return new SchemaFloat(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_bias", index)));
}
public org.w3c.dom.Node getStartingmipmap_biasCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_bias" );
}
public org.w3c.dom.Node getAdvancedmipmap_biasCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_bias", curNode );
}
public SchemaFloat getmipmap_biasValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaFloat(getDomNodeValue(curNode));
}
public SchemaFloat getmipmap_bias() throws Exception
{
return getmipmap_biasAt(0);
}
public void removemipmap_biasAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_bias", index);
}
public void removemipmap_bias() {
removemipmap_biasAt(0);
}
public org.w3c.dom.Node addmipmap_bias(SchemaFloat value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_bias", value.toString());
}
public org.w3c.dom.Node addmipmap_bias(String value) throws Exception {
return addmipmap_bias(new SchemaFloat(value));
}
public void insertmipmap_biasAt(SchemaFloat value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_bias", index, value.toString());
}
public void insertmipmap_biasAt(String value, int index) throws Exception {
insertmipmap_biasAt(new SchemaFloat(value), index);
}
public void replacemipmap_biasAt(SchemaFloat value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "mipmap_bias", index, value.toString());
}
public void replacemipmap_biasAt(String value, int index) throws Exception {
replacemipmap_biasAt(new SchemaFloat(value), index);
}
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 + -