📄 linestype.java
字号:
}
public org.w3c.dom.Node getAdvancedmaterialCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Attribute, null, "material", curNode );
}
public SchemaNCName getmaterialValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaNCName(getDomNodeValue(curNode));
}
public SchemaNCName getmaterial() throws Exception
{
return getmaterialAt(0);
}
public void removematerialAt(int index) {
removeDomChildAt(Attribute, null, "material", index);
}
public void removematerial() {
removematerialAt(0);
}
public org.w3c.dom.Node addmaterial(SchemaNCName value) {
if( value.isNull() )
return null;
return appendDomChild(Attribute, null, "material", value.toString());
}
public org.w3c.dom.Node addmaterial(String value) throws Exception {
return addmaterial(new SchemaNCName(value));
}
public void insertmaterialAt(SchemaNCName value, int index) {
insertDomChildAt(Attribute, null, "material", index, value.toString());
}
public void insertmaterialAt(String value, int index) throws Exception {
insertmaterialAt(new SchemaNCName(value), index);
}
public void replacematerialAt(SchemaNCName value, int index) {
replaceDomChildAt(Attribute, null, "material", index, value.toString());
}
public void replacematerialAt(String value, int index) throws Exception {
replacematerialAt(new SchemaNCName(value), index);
}
public static int getinputMinCount() {
return 0;
}
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 InputLocalOffset newinput() {
return new InputLocalOffset(domNode.getOwnerDocument().createElementNS("http://www.collada.org/2005/11/COLLADASchema", "input"));
}
public InputLocalOffset getinputAt(int index) throws Exception {
return new InputLocalOffset(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 InputLocalOffset getinputValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new InputLocalOffset(curNode);
}
public InputLocalOffset 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(InputLocalOffset value) {
return appendDomElement("http://www.collada.org/2005/11/COLLADASchema", "input", value);
}
public void insertinputAt(InputLocalOffset value, int index) {
insertDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "input", index, value);
}
public void replaceinputAt(InputLocalOffset value, int index) {
replaceDomElementAt("http://www.collada.org/2005/11/COLLADASchema", "input", index, value);
}
public static int getpMinCount() {
return 0;
}
public static int getpMaxCount() {
return 1;
}
public int getpCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "p");
}
public boolean hasp() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "p");
}
public ListOfUInts newp() {
return new ListOfUInts();
}
public ListOfUInts getpAt(int index) throws Exception {
return new ListOfUInts(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "p", index)));
}
public org.w3c.dom.Node getStartingpCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "p" );
}
public org.w3c.dom.Node getAdvancedpCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "p", curNode );
}
public ListOfUInts getpValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new ListOfUInts(getDomNodeValue(curNode));
}
public ListOfUInts getp() throws Exception
{
return getpAt(0);
}
public void removepAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "p", index);
}
public void removep() {
removepAt(0);
}
public org.w3c.dom.Node addp(ListOfUInts value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "p", value.toString());
}
public org.w3c.dom.Node addp(String value) throws Exception {
return addp(new ListOfUInts(value));
}
public void insertpAt(ListOfUInts value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "p", index, value.toString());
}
public void insertpAt(String value, int index) throws Exception {
insertpAt(new ListOfUInts(value), index);
}
public void replacepAt(ListOfUInts value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "p", index, value.toString());
}
public void replacepAt(String value, int index) throws Exception {
replacepAt(new ListOfUInts(value), index);
}
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 + -