📄 animation_cliptype.java
字号:
return null;
return appendDomChild(Attribute, null, "start", value.toString());
}
public org.w3c.dom.Node addstart(String value) throws Exception {
return addstart(new SchemaDouble(value));
}
public void insertstartAt(SchemaDouble value, int index) {
insertDomChildAt(Attribute, null, "start", index, value.toString());
}
public void insertstartAt(String value, int index) throws Exception {
insertstartAt(new SchemaDouble(value), index);
}
public void replacestartAt(SchemaDouble value, int index) {
replaceDomChildAt(Attribute, null, "start", index, value.toString());
}
public void replacestartAt(String value, int index) throws Exception {
replacestartAt(new SchemaDouble(value), index);
}
public static int getendMinCount() {
return 0;
}
public static int getendMaxCount() {
return 1;
}
public int getendCount() {
return getDomChildCount(Attribute, null, "end");
}
public boolean hasend() {
return hasDomChild(Attribute, null, "end");
}
public SchemaDouble newend() {
return new SchemaDouble();
}
public SchemaDouble getendAt(int index) throws Exception {
return new SchemaDouble(getDomNodeValue(getDomChildAt(Attribute, null, "end", index)));
}
public org.w3c.dom.Node getStartingendCursor() throws Exception {
return getDomFirstChild(Attribute, null, "end" );
}
public org.w3c.dom.Node getAdvancedendCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Attribute, null, "end", curNode );
}
public SchemaDouble getendValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaDouble(getDomNodeValue(curNode));
}
public SchemaDouble getend() throws Exception
{
return getendAt(0);
}
public void removeendAt(int index) {
removeDomChildAt(Attribute, null, "end", index);
}
public void removeend() {
removeendAt(0);
}
public org.w3c.dom.Node addend(SchemaDouble value) {
if( value.isNull() )
return null;
return appendDomChild(Attribute, null, "end", value.toString());
}
public org.w3c.dom.Node addend(String value) throws Exception {
return addend(new SchemaDouble(value));
}
public void insertendAt(SchemaDouble value, int index) {
insertDomChildAt(Attribute, null, "end", index, value.toString());
}
public void insertendAt(String value, int index) throws Exception {
insertendAt(new SchemaDouble(value), index);
}
public void replaceendAt(SchemaDouble value, int index) {
replaceDomChildAt(Attribute, null, "end", index, value.toString());
}
public void replaceendAt(String value, int index) throws Exception {
replaceendAt(new SchemaDouble(value), index);
}
public static int getassetMinCount() {
return 0;
}
public static int getassetMaxCount() {
return 1;
}
public int getassetCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "asset");
}
public boolean hasasset() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "asset");
}
public assetType newasset() {
return new assetType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "asset"));
}
public assetType getassetAt(int index) throws Exception {
return new assetType(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "asset", index));
}
public org.w3c.dom.Node getStartingassetCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "asset" );
}
public org.w3c.dom.Node getAdvancedassetCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "asset", curNode );
}
public assetType getassetValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new assetType(curNode);
}
public assetType getasset() throws Exception
{
return getassetAt(0);
}
public void removeassetAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "asset", index);
}
public void removeasset() {
removeassetAt(0);
}
public org.w3c.dom.Node addasset(assetType value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "asset", value);
}
public void insertassetAt(assetType value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "asset", index, value);
}
public void replaceassetAt(assetType value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "asset", index, value);
}
public static int getinstance_animationMinCount() {
return 1;
}
public static int getinstance_animationMaxCount() {
return Integer.MAX_VALUE;
}
public int getinstance_animationCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_animation");
}
public boolean hasinstance_animation() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_animation");
}
public InstanceWithExtra newinstance_animation() {
return new InstanceWithExtra(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "instance_animation"));
}
public InstanceWithExtra getinstance_animationAt(int index) throws Exception {
return new InstanceWithExtra(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_animation", index));
}
public org.w3c.dom.Node getStartinginstance_animationCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_animation" );
}
public org.w3c.dom.Node getAdvancedinstance_animationCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_animation", curNode );
}
public InstanceWithExtra getinstance_animationValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new InstanceWithExtra(curNode);
}
public InstanceWithExtra getinstance_animation() throws Exception
{
return getinstance_animationAt(0);
}
public void removeinstance_animationAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_animation", index);
}
public void removeinstance_animation() {
while (hasinstance_animation())
removeinstance_animationAt(0);
}
public org.w3c.dom.Node addinstance_animation(InstanceWithExtra value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "instance_animation", value);
}
public void insertinstance_animationAt(InstanceWithExtra value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "instance_animation", index, value);
}
public void replaceinstance_animationAt(InstanceWithExtra value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "instance_animation", index, value);
}
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 + -