channeltype.java
来自「java 3d game jme 工程开发源代码」· Java 代码 · 共 214 行
JAVA
214 行
/**
* channelType.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.SchemaToken;
public class channelType extends com.jmex.xml.xml.Node {
public channelType(channelType node) {
super(node);
}
public channelType(org.w3c.dom.Node node) {
super(node);
}
public channelType(org.w3c.dom.Document doc) {
super(doc);
}
public channelType(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, "source" );
tmpNode != null;
tmpNode = getDomNextChild( Attribute, null, "source", tmpNode )
) {
internalAdjustPrefix(tmpNode, false);
}
for ( org.w3c.dom.Node tmpNode = getDomFirstChild( Attribute, null, "target" );
tmpNode != null;
tmpNode = getDomNextChild( Attribute, null, "target", tmpNode )
) {
internalAdjustPrefix(tmpNode, false);
}
}
public void setXsiType() {
org.w3c.dom.Element el = (org.w3c.dom.Element) domNode;
el.setAttributeNS("http://www.w3.org/2001/XMLSchema-instance", "xsi:type", "channel");
}
public static int getsourceMinCount() {
return 1;
}
public static int getsourceMaxCount() {
return 1;
}
public int getsourceCount() {
return getDomChildCount(Attribute, null, "source");
}
public boolean hassource() {
return hasDomChild(Attribute, null, "source");
}
public URIFragmentType newsource() {
return new URIFragmentType();
}
public URIFragmentType getsourceAt(int index) throws Exception {
return new URIFragmentType(getDomNodeValue(getDomChildAt(Attribute, null, "source", index)));
}
public org.w3c.dom.Node getStartingsourceCursor() throws Exception {
return getDomFirstChild(Attribute, null, "source" );
}
public org.w3c.dom.Node getAdvancedsourceCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Attribute, null, "source", curNode );
}
public URIFragmentType getsourceValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new URIFragmentType(getDomNodeValue(curNode));
}
public URIFragmentType getsource() throws Exception
{
return getsourceAt(0);
}
public void removesourceAt(int index) {
removeDomChildAt(Attribute, null, "source", index);
}
public void removesource() {
removesourceAt(0);
}
public org.w3c.dom.Node addsource(URIFragmentType value) {
if( value.isNull() )
return null;
return appendDomChild(Attribute, null, "source", value.toString());
}
public org.w3c.dom.Node addsource(String value) throws Exception {
return addsource(new URIFragmentType(value));
}
public void insertsourceAt(URIFragmentType value, int index) {
insertDomChildAt(Attribute, null, "source", index, value.toString());
}
public void insertsourceAt(String value, int index) throws Exception {
insertsourceAt(new URIFragmentType(value), index);
}
public void replacesourceAt(URIFragmentType value, int index) {
replaceDomChildAt(Attribute, null, "source", index, value.toString());
}
public void replacesourceAt(String value, int index) throws Exception {
replacesourceAt(new URIFragmentType(value), index);
}
public static int gettargetMinCount() {
return 1;
}
public static int gettargetMaxCount() {
return 1;
}
public int gettargetCount() {
return getDomChildCount(Attribute, null, "target");
}
public boolean hastarget() {
return hasDomChild(Attribute, null, "target");
}
public SchemaToken newtarget() {
return new SchemaToken();
}
public SchemaToken gettargetAt(int index) throws Exception {
return new SchemaToken(getDomNodeValue(getDomChildAt(Attribute, null, "target", index)));
}
public org.w3c.dom.Node getStartingtargetCursor() throws Exception {
return getDomFirstChild(Attribute, null, "target" );
}
public org.w3c.dom.Node getAdvancedtargetCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Attribute, null, "target", curNode );
}
public SchemaToken gettargetValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaToken(getDomNodeValue(curNode));
}
public SchemaToken gettarget() throws Exception
{
return gettargetAt(0);
}
public void removetargetAt(int index) {
removeDomChildAt(Attribute, null, "target", index);
}
public void removetarget() {
removetargetAt(0);
}
public org.w3c.dom.Node addtarget(SchemaToken value) {
if( value.isNull() )
return null;
return appendDomChild(Attribute, null, "target", value.toString());
}
public org.w3c.dom.Node addtarget(String value) throws Exception {
return addtarget(new SchemaToken(value));
}
public void inserttargetAt(SchemaToken value, int index) {
insertDomChildAt(Attribute, null, "target", index, value.toString());
}
public void inserttargetAt(String value, int index) throws Exception {
inserttargetAt(new SchemaToken(value), index);
}
public void replacetargetAt(SchemaToken value, int index) {
replaceDomChildAt(Attribute, null, "target", index, value.toString());
}
public void replacetargetAt(String value, int index) throws Exception {
replacetargetAt(new SchemaToken(value), index);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?