📄 glsl_newarray_type.java
字号:
public org.w3c.dom.Node getAdvancedsampler1DCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler1D", curNode );
}
public gl_sampler1D getsampler1DValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new gl_sampler1D(curNode);
}
public gl_sampler1D getsampler1D() throws Exception
{
return getsampler1DAt(0);
}
public void removesampler1DAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler1D", index);
}
public void removesampler1D() {
removesampler1DAt(0);
}
public org.w3c.dom.Node addsampler1D(gl_sampler1D value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "sampler1D", value);
}
public void insertsampler1DAt(gl_sampler1D value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "sampler1D", index, value);
}
public void replacesampler1DAt(gl_sampler1D value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "sampler1D", index, value);
}
public static int getsampler2DMinCount() {
return 1;
}
public static int getsampler2DMaxCount() {
return 1;
}
public int getsampler2DCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler2D");
}
public boolean hassampler2D() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler2D");
}
public gl_sampler2D newsampler2D() {
return new gl_sampler2D(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "sampler2D"));
}
public gl_sampler2D getsampler2DAt(int index) throws Exception {
return new gl_sampler2D(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler2D", index));
}
public org.w3c.dom.Node getStartingsampler2DCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler2D" );
}
public org.w3c.dom.Node getAdvancedsampler2DCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler2D", curNode );
}
public gl_sampler2D getsampler2DValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new gl_sampler2D(curNode);
}
public gl_sampler2D getsampler2D() throws Exception
{
return getsampler2DAt(0);
}
public void removesampler2DAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler2D", index);
}
public void removesampler2D() {
removesampler2DAt(0);
}
public org.w3c.dom.Node addsampler2D(gl_sampler2D value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "sampler2D", value);
}
public void insertsampler2DAt(gl_sampler2D value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "sampler2D", index, value);
}
public void replacesampler2DAt(gl_sampler2D value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "sampler2D", index, value);
}
public static int getsampler3DMinCount() {
return 1;
}
public static int getsampler3DMaxCount() {
return 1;
}
public int getsampler3DCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler3D");
}
public boolean hassampler3D() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler3D");
}
public gl_sampler3D newsampler3D() {
return new gl_sampler3D(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "sampler3D"));
}
public gl_sampler3D getsampler3DAt(int index) throws Exception {
return new gl_sampler3D(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler3D", index));
}
public org.w3c.dom.Node getStartingsampler3DCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler3D" );
}
public org.w3c.dom.Node getAdvancedsampler3DCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler3D", curNode );
}
public gl_sampler3D getsampler3DValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new gl_sampler3D(curNode);
}
public gl_sampler3D getsampler3D() throws Exception
{
return getsampler3DAt(0);
}
public void removesampler3DAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "sampler3D", index);
}
public void removesampler3D() {
removesampler3DAt(0);
}
public org.w3c.dom.Node addsampler3D(gl_sampler3D value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "sampler3D", value);
}
public void insertsampler3DAt(gl_sampler3D value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "sampler3D", index, value);
}
public void replacesampler3DAt(gl_sampler3D value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "sampler3D", index, value);
}
public static int getsamplerCUBEMinCount() {
return 1;
}
public static int getsamplerCUBEMaxCount() {
return 1;
}
public int getsamplerCUBECount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerCUBE");
}
public boolean hassamplerCUBE() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerCUBE");
}
public gl_samplerCUBE newsamplerCUBE() {
return new gl_samplerCUBE(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "samplerCUBE"));
}
public gl_samplerCUBE getsamplerCUBEAt(int index) throws Exception {
return new gl_samplerCUBE(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerCUBE", index));
}
public org.w3c.dom.Node getStartingsamplerCUBECursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerCUBE" );
}
public org.w3c.dom.Node getAdvancedsamplerCUBECursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerCUBE", curNode );
}
public gl_samplerCUBE getsamplerCUBEValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new gl_samplerCUBE(curNode);
}
public gl_samplerCUBE getsamplerCUBE() throws Exception
{
return getsamplerCUBEAt(0);
}
public void removesamplerCUBEAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerCUBE", index);
}
public void removesamplerCUBE() {
removesamplerCUBEAt(0);
}
public org.w3c.dom.Node addsamplerCUBE(gl_samplerCUBE value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "samplerCUBE", value);
}
public void insertsamplerCUBEAt(gl_samplerCUBE value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "samplerCUBE", index, value);
}
public void replacesamplerCUBEAt(gl_samplerCUBE value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "samplerCUBE", index, value);
}
public static int getsamplerRECTMinCount() {
return 1;
}
public static int getsamplerRECTMaxCount() {
return 1;
}
public int getsamplerRECTCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerRECT");
}
public boolean hassamplerRECT() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerRECT");
}
public gl_samplerRECT newsamplerRECT() {
return new gl_samplerRECT(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "samplerRECT"));
}
public gl_samplerRECT getsamplerRECTAt(int index) throws Exception {
return new gl_samplerRECT(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerRECT", index));
}
public org.w3c.dom.Node getStartingsamplerRECTCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerRECT" );
}
public org.w3c.dom.Node getAdvancedsamplerRECTCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerRECT", curNode );
}
public gl_samplerRECT getsamplerRECTValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new gl_samplerRECT(curNode);
}
public gl_samplerRECT getsamplerRECT() throws Exception
{
return getsamplerRECTAt(0);
}
public void removesamplerRECTAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerRECT", index);
}
public void removesamplerRECT() {
removesamplerRECTAt(0);
}
public org.w3c.dom.Node addsamplerRECT(gl_samplerRECT value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "samplerRECT", value);
}
public void insertsamplerRECTAt(gl_samplerRECT value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "samplerRECT", index, value);
}
public void replacesamplerRECTAt(gl_samplerRECT value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "samplerRECT", index, value);
}
public static int getsamplerDEPTHMinCount() {
return 1;
}
public static int getsamplerDEPTHMaxCount() {
return 1;
}
public int getsamplerDEPTHCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerDEPTH");
}
public boolean hassamplerDEPTH() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerDEPTH");
}
public gl_samplerDEPTH newsamplerDEPTH() {
return new gl_samplerDEPTH(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "samplerDEPTH"));
}
public gl_samplerDEPTH getsamplerDEPTHAt(int index) throws Exception {
return new gl_samplerDEPTH(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerDEPTH", index));
}
public org.w3c.dom.Node getStartingsamplerDEPTHCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerDEPTH" );
}
public org.w3c.dom.Node getAdvancedsamplerDEPTHCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerDEPTH", curNode );
}
public gl_samplerDEPTH getsamplerDEPTHValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new gl_samplerDEPTH(curNode);
}
public gl_samplerDEPTH getsamplerDEPTH() throws Exception
{
return getsamplerDEPTHAt(0);
}
public void removesamplerDEPTHAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "samplerDEPTH", index);
}
public void removesamplerDEPTH() {
removesamplerDEPTHAt(0);
}
public org.w3c.dom.Node addsamplerDEPTH(gl_samplerDEPTH value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "samplerDEPTH", value);
}
public void insertsamplerDEPTHAt(gl_samplerDEPTH value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "samplerDEPTH", index, value);
}
public void replacesamplerDEPTHAt(gl_samplerDEPTH value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "samplerDEPTH", index, value);
}
public static int getenumMinCount() {
return 1;
}
public static int getenumMaxCount() {
return 1;
}
public int getenumCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "enum");
}
public boolean hasenum() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "enum");
}
public gl_enumeration newenum() {
return new gl_enumeration();
}
public gl_enumeration getenumAt(int index) throws Exception {
return new gl_enumeration(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "enum", index)));
}
public org.w3c.dom.Node getStartingenumCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "enum" );
}
public org.w3c.dom.Node getAdvancedenumCursor( org.w3c.dom.Node
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -