📄 nodetype2.java
字号:
}
public void removematrixAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "matrix", index);
}
public void removematrix() {
removematrixAt(0);
}
public org.w3c.dom.Node addmatrix(matrixType value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "matrix", value);
}
public void insertmatrixAt(matrixType value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "matrix", index, value);
}
public void replacematrixAt(matrixType value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "matrix", index, value);
}
public static int getrotateMinCount() {
return 1;
}
public static int getrotateMaxCount() {
return 1;
}
public int getrotateCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "rotate");
}
public boolean hasrotate() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "rotate");
}
public rotateType newrotate() {
return new rotateType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "rotate"));
}
public rotateType getrotateAt(int index) throws Exception {
return new rotateType(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "rotate", index));
}
public org.w3c.dom.Node getStartingrotateCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "rotate" );
}
public org.w3c.dom.Node getAdvancedrotateCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "rotate", curNode );
}
public rotateType getrotateValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new rotateType(curNode);
}
public rotateType getrotate() throws Exception
{
return getrotateAt(0);
}
public void removerotateAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "rotate", index);
}
public void removerotate() {
removerotateAt(0);
}
public org.w3c.dom.Node addrotate(rotateType value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "rotate", value);
}
public void insertrotateAt(rotateType value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "rotate", index, value);
}
public void replacerotateAt(rotateType value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "rotate", index, value);
}
public static int getscaleMinCount() {
return 1;
}
public static int getscaleMaxCount() {
return 1;
}
public int getscaleCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "scale");
}
public boolean hasscale() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "scale");
}
public TargetableFloat3 newscale() {
return new TargetableFloat3(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "scale"));
}
public TargetableFloat3 getscaleAt(int index) throws Exception {
return new TargetableFloat3(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "scale", index));
}
public org.w3c.dom.Node getStartingscaleCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "scale" );
}
public org.w3c.dom.Node getAdvancedscaleCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "scale", curNode );
}
public TargetableFloat3 getscaleValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new TargetableFloat3(curNode);
}
public TargetableFloat3 getscale() throws Exception
{
return getscaleAt(0);
}
public void removescaleAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "scale", index);
}
public void removescale() {
removescaleAt(0);
}
public org.w3c.dom.Node addscale(TargetableFloat3 value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "scale", value);
}
public void insertscaleAt(TargetableFloat3 value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "scale", index, value);
}
public void replacescaleAt(TargetableFloat3 value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "scale", index, value);
}
public static int getskewMinCount() {
return 1;
}
public static int getskewMaxCount() {
return 1;
}
public int getskewCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "skew");
}
public boolean hasskew() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "skew");
}
public skewType newskew() {
return new skewType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "skew"));
}
public skewType getskewAt(int index) throws Exception {
return new skewType(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "skew", index));
}
public org.w3c.dom.Node getStartingskewCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "skew" );
}
public org.w3c.dom.Node getAdvancedskewCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "skew", curNode );
}
public skewType getskewValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new skewType(curNode);
}
public skewType getskew() throws Exception
{
return getskewAt(0);
}
public void removeskewAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "skew", index);
}
public void removeskew() {
removeskewAt(0);
}
public org.w3c.dom.Node addskew(skewType value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "skew", value);
}
public void insertskewAt(skewType value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "skew", index, value);
}
public void replaceskewAt(skewType value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "skew", index, value);
}
public static int gettranslateMinCount() {
return 1;
}
public static int gettranslateMaxCount() {
return 1;
}
public int gettranslateCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "translate");
}
public boolean hastranslate() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "translate");
}
public TargetableFloat3 newtranslate() {
return new TargetableFloat3(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "translate"));
}
public TargetableFloat3 gettranslateAt(int index) throws Exception {
return new TargetableFloat3(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "translate", index));
}
public org.w3c.dom.Node getStartingtranslateCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "translate" );
}
public org.w3c.dom.Node getAdvancedtranslateCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "translate", curNode );
}
public TargetableFloat3 gettranslateValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new TargetableFloat3(curNode);
}
public TargetableFloat3 gettranslate() throws Exception
{
return gettranslateAt(0);
}
public void removetranslateAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "translate", index);
}
public void removetranslate() {
removetranslateAt(0);
}
public org.w3c.dom.Node addtranslate(TargetableFloat3 value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "translate", value);
}
public void inserttranslateAt(TargetableFloat3 value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "translate", index, value);
}
public void replacetranslateAt(TargetableFloat3 value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "translate", index, value);
}
public static int getinstance_cameraMinCount() {
return 0;
}
public static int getinstance_cameraMaxCount() {
return Integer.MAX_VALUE;
}
public int getinstance_cameraCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_camera");
}
public boolean hasinstance_camera() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_camera");
}
public InstanceWithExtra newinstance_camera() {
return new InstanceWithExtra(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "instance_camera"));
}
public InstanceWithExtra getinstance_cameraAt(int index) throws Exception {
return new InstanceWithExtra(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_camera", index));
}
public org.w3c.dom.Node getStartinginstance_cameraCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_camera" );
}
public org.w3c.dom.Node getAdvancedinstance_cameraCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_camera", curNode );
}
public InstanceWithExtra getinstance_cameraValueAtCursor( 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_camera() throws Exception
{
return getinstance_cameraAt(0);
}
public void removeinstance_cameraAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_camera", index);
}
public void removeinstance_camera() {
while (hasinstance_camera())
removeinstance_cameraAt(0);
}
public org.w3c.dom.Node addinstance_camera(InstanceWithExtra value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "instance_camera", value);
}
public void insertinstance_cameraAt(InstanceWithExtra value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "instance_camera", index, value);
}
public void replaceinstance_cameraAt(InstanceWithExtra value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "instance_camera", index, value);
}
public static int getinstance_controllerMinCount() {
return 0;
}
public static int getinstance_controllerMaxCount() {
return Integer.MAX_VALUE;
}
public int getinstance_controllerCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_controller");
}
public boolean hasinstance_controller() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_controller");
}
public instance_controllerType newinstance_controller() {
return new instance_controllerType(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "instance_controller"));
}
public instance_controllerType getinstance_controllerAt(int index) throws Exception {
return new instance_controllerType(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "instance_controller", index));
}
public org.w3c.dom.Node getStartinginstance_controllerCursor() throws Exception {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -