📄 samplertype.java
字号:
/**
* samplerType.java
*
* This file was generated by XMLSpy 2007sp2 Enterprise Edition.
*
* YOU SHOULD NOT MODIFY THIS FILE, BECAUSE IT WILL BE
* OVERWRITTEN WHEN YOU RE-RUN CODE GENERATION.
*
* Refer to the XMLSpy Documentation for further details.
* http://www.altova.com/xmlspy
*/
package com.jmex.model.collada.schema;
import com.jmex.xml.types.SchemaID;
public class samplerType extends com.jmex.xml.xml.Node {
public samplerType(samplerType node) {
super(node);
}
public samplerType(org.w3c.dom.Node node) {
super(node);
}
public samplerType(org.w3c.dom.Document doc) {
super(doc);
}
public samplerType(com.jmex.xml.xml.Document doc, String namespaceURI, String prefix, String name) {
super(doc, namespaceURI, prefix, name);
}
public void adjustPrefix() {
for ( org.w3c.dom.Node tmpNode = getDomFirstChild( Attribute, null, "id" );
tmpNode != null;
tmpNode = getDomNextChild( Attribute, null, "id", tmpNode )
) {
internalAdjustPrefix(tmpNode, false);
}
for ( org.w3c.dom.Node tmpNode = getDomFirstChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "input" );
tmpNode != null;
tmpNode = getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "input", tmpNode )
) {
internalAdjustPrefix(tmpNode, true);
new InputLocal(tmpNode).adjustPrefix();
}
}
public void setXsiType() {
org.w3c.dom.Element el = (org.w3c.dom.Element) domNode;
el.setAttributeNS("http://www.w3.org/2001/XMLSchema-instance", "xsi:type", "sampler");
}
public static int getidMinCount() {
return 0;
}
public static int getidMaxCount() {
return 1;
}
public int getidCount() {
return getDomChildCount(Attribute, null, "id");
}
public boolean hasid() {
return hasDomChild(Attribute, null, "id");
}
public SchemaID newid() {
return new SchemaID();
}
public SchemaID getidAt(int index) throws Exception {
return new SchemaID(getDomNodeValue(getDomChildAt(Attribute, null, "id", index)));
}
public org.w3c.dom.Node getStartingidCursor() throws Exception {
return getDomFirstChild(Attribute, null, "id" );
}
public org.w3c.dom.Node getAdvancedidCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Attribute, null, "id", curNode );
}
public SchemaID getidValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaID(getDomNodeValue(curNode));
}
public SchemaID getid() throws Exception
{
return getidAt(0);
}
public void removeidAt(int index) {
removeDomChildAt(Attribute, null, "id", index);
}
public void removeid() {
removeidAt(0);
}
public org.w3c.dom.Node addid(SchemaID value) {
if( value.isNull() )
return null;
return appendDomChild(Attribute, null, "id", value.toString());
}
public org.w3c.dom.Node addid(String value) throws Exception {
return addid(new SchemaID(value));
}
public void insertidAt(SchemaID value, int index) {
insertDomChildAt(Attribute, null, "id", index, value.toString());
}
public void insertidAt(String value, int index) throws Exception {
insertidAt(new SchemaID(value), index);
}
public void replaceidAt(SchemaID value, int index) {
replaceDomChildAt(Attribute, null, "id", index, value.toString());
}
public void replaceidAt(String value, int index) throws Exception {
replaceidAt(new SchemaID(value), index);
}
public static int getinputMinCount() {
return 1;
}
public static int getinputMaxCount() {
return Integer.MAX_VALUE;
}
public int getinputCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "input");
}
public boolean hasinput() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "input");
}
public InputLocal newinput() {
return new InputLocal(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "input"));
}
public InputLocal getinputAt(int index) throws Exception {
return new InputLocal(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "input", index));
}
public org.w3c.dom.Node getStartinginputCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "input" );
}
public org.w3c.dom.Node getAdvancedinputCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "input", curNode );
}
public InputLocal getinputValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new InputLocal(curNode);
}
public InputLocal getinput() throws Exception
{
return getinputAt(0);
}
public void removeinputAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "input", index);
}
public void removeinput() {
while (hasinput())
removeinputAt(0);
}
public org.w3c.dom.Node addinput(InputLocal value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "input", value);
}
public void insertinputAt(InputLocal value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "input", index, value);
}
public void replaceinputAt(InputLocal value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "input", index, value);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -