Interface CTTagList
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTTagList extends XmlObject
An XML CT_TagList(@http://schemas.openxmlformats.org/presentationml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTTagList.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description CTStringTagaddNewTag()Appends and returns a new empty value (as xml) as the last "tag" elementCTStringTag[]getTagArray()Deprecated.CTStringTaggetTagArray(int i)Gets ith "tag" elementjava.util.List<CTStringTag>getTagList()Gets a List of "tag" elementsCTStringTaginsertNewTag(int i)Inserts and returns a new empty value (as xml) as the ith "tag" elementvoidremoveTag(int i)Removes the ith "tag" elementvoidsetTagArray(int i, CTStringTag tag)Sets ith "tag" elementvoidsetTagArray(CTStringTag[] tagArray)Sets array of all "tag" elementintsizeOfTagArray()Returns number of "tag" element-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getTagList
java.util.List<CTStringTag> getTagList()
Gets a List of "tag" elements
-
getTagArray
@Deprecated CTStringTag[] getTagArray()
Deprecated.Gets array of all "tag" elements
-
getTagArray
CTStringTag getTagArray(int i)
Gets ith "tag" element
-
sizeOfTagArray
int sizeOfTagArray()
Returns number of "tag" element
-
setTagArray
void setTagArray(CTStringTag[] tagArray)
Sets array of all "tag" element
-
setTagArray
void setTagArray(int i, CTStringTag tag)Sets ith "tag" element
-
insertNewTag
CTStringTag insertNewTag(int i)
Inserts and returns a new empty value (as xml) as the ith "tag" element
-
addNewTag
CTStringTag addNewTag()
Appends and returns a new empty value (as xml) as the last "tag" element
-
removeTag
void removeTag(int i)
Removes the ith "tag" element
-
-