📄 contributortype.java
字号:
return 1;
}
public int getcommentsCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "comments");
}
public boolean hascomments() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "comments");
}
public SchemaString newcomments() {
return new SchemaString();
}
public SchemaString getcommentsAt(int index) throws Exception {
return new SchemaString(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "comments", index)));
}
public org.w3c.dom.Node getStartingcommentsCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "comments" );
}
public org.w3c.dom.Node getAdvancedcommentsCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "comments", curNode );
}
public SchemaString getcommentsValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaString(getDomNodeValue(curNode));
}
public SchemaString getcomments() throws Exception
{
return getcommentsAt(0);
}
public void removecommentsAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "comments", index);
}
public void removecomments() {
removecommentsAt(0);
}
public org.w3c.dom.Node addcomments(SchemaString value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "comments", value.toString());
}
public org.w3c.dom.Node addcomments(String value) throws Exception {
return addcomments(new SchemaString(value));
}
public void insertcommentsAt(SchemaString value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "comments", index, value.toString());
}
public void insertcommentsAt(String value, int index) throws Exception {
insertcommentsAt(new SchemaString(value), index);
}
public void replacecommentsAt(SchemaString value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "comments", index, value.toString());
}
public void replacecommentsAt(String value, int index) throws Exception {
replacecommentsAt(new SchemaString(value), index);
}
public static int getcopyrightMinCount() {
return 0;
}
public static int getcopyrightMaxCount() {
return 1;
}
public int getcopyrightCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "copyright");
}
public boolean hascopyright() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "copyright");
}
public SchemaString newcopyright() {
return new SchemaString();
}
public SchemaString getcopyrightAt(int index) throws Exception {
return new SchemaString(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "copyright", index)));
}
public org.w3c.dom.Node getStartingcopyrightCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "copyright" );
}
public org.w3c.dom.Node getAdvancedcopyrightCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "copyright", curNode );
}
public SchemaString getcopyrightValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaString(getDomNodeValue(curNode));
}
public SchemaString getcopyright() throws Exception
{
return getcopyrightAt(0);
}
public void removecopyrightAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "copyright", index);
}
public void removecopyright() {
removecopyrightAt(0);
}
public org.w3c.dom.Node addcopyright(SchemaString value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "copyright", value.toString());
}
public org.w3c.dom.Node addcopyright(String value) throws Exception {
return addcopyright(new SchemaString(value));
}
public void insertcopyrightAt(SchemaString value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "copyright", index, value.toString());
}
public void insertcopyrightAt(String value, int index) throws Exception {
insertcopyrightAt(new SchemaString(value), index);
}
public void replacecopyrightAt(SchemaString value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "copyright", index, value.toString());
}
public void replacecopyrightAt(String value, int index) throws Exception {
replacecopyrightAt(new SchemaString(value), index);
}
public static int getsource_dataMinCount() {
return 0;
}
public static int getsource_dataMaxCount() {
return 1;
}
public int getsource_dataCount() {
return getDomChildCount(Element, "http://www.collada.org/2005/11/COLLADASchema", "source_data");
}
public boolean hassource_data() {
return hasDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "source_data");
}
public SchemaString newsource_data() {
return new SchemaString();
}
public SchemaString getsource_dataAt(int index) throws Exception {
return new SchemaString(getDomNodeValue(getDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "source_data", index)));
}
public org.w3c.dom.Node getStartingsource_dataCursor() throws Exception {
return getDomFirstChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "source_data" );
}
public org.w3c.dom.Node getAdvancedsource_dataCursor( org.w3c.dom.Node curNode ) throws Exception {
return getDomNextChild( Element, "http://www.collada.org/2005/11/COLLADASchema", "source_data", curNode );
}
public SchemaString getsource_dataValueAtCursor( org.w3c.dom.Node curNode ) throws Exception {
if( curNode == null )
throw new com.jmex.xml.xml.XmlException("Out of range");
else
return new SchemaString(getDomNodeValue(curNode));
}
public SchemaString getsource_data() throws Exception
{
return getsource_dataAt(0);
}
public void removesource_dataAt(int index) {
removeDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "source_data", index);
}
public void removesource_data() {
removesource_dataAt(0);
}
public org.w3c.dom.Node addsource_data(SchemaString value) {
if( value.isNull() )
return null;
return appendDomChild(Element, "http://www.collada.org/2005/11/COLLADASchema", "source_data", value.toString());
}
public org.w3c.dom.Node addsource_data(String value) throws Exception {
return addsource_data(new SchemaString(value));
}
public void insertsource_dataAt(SchemaString value, int index) {
insertDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "source_data", index, value.toString());
}
public void insertsource_dataAt(String value, int index) throws Exception {
insertsource_dataAt(new SchemaString(value), index);
}
public void replacesource_dataAt(SchemaString value, int index) {
replaceDomChildAt(Element, "http://www.collada.org/2005/11/COLLADASchema", "source_data", index, value.toString());
}
public void replacesource_dataAt(String value, int index) throws Exception {
replacesource_dataAt(new SchemaString(value), index);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -