Interface CTCustomXmlPr
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTCustomXmlPr extends XmlObject
An XML CT_CustomXmlPr(@http://schemas.openxmlformats.org/wordprocessingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTCustomXmlPr.Factory
A factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaType
type
-
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 CTAttr
addNewAttr()
Appends and returns a new empty value (as xml) as the last "attr" elementCTString
addNewPlaceholder()
Appends and returns a new empty "placeholder" elementCTAttr[]
getAttrArray()
Deprecated.CTAttr
getAttrArray(int i)
Gets ith "attr" elementjava.util.List<CTAttr>
getAttrList()
Gets a List of "attr" elementsCTString
getPlaceholder()
Gets the "placeholder" elementCTAttr
insertNewAttr(int i)
Inserts and returns a new empty value (as xml) as the ith "attr" elementboolean
isSetPlaceholder()
True if has "placeholder" elementvoid
removeAttr(int i)
Removes the ith "attr" elementvoid
setAttrArray(int i, CTAttr attr)
Sets ith "attr" elementvoid
setAttrArray(CTAttr[] attrArray)
Sets array of all "attr" elementvoid
setPlaceholder(CTString placeholder)
Sets the "placeholder" elementint
sizeOfAttrArray()
Returns number of "attr" elementvoid
unsetPlaceholder()
Unsets the "placeholder" 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
-
getPlaceholder
CTString getPlaceholder()
Gets the "placeholder" element
-
isSetPlaceholder
boolean isSetPlaceholder()
True if has "placeholder" element
-
setPlaceholder
void setPlaceholder(CTString placeholder)
Sets the "placeholder" element
-
addNewPlaceholder
CTString addNewPlaceholder()
Appends and returns a new empty "placeholder" element
-
unsetPlaceholder
void unsetPlaceholder()
Unsets the "placeholder" element
-
getAttrList
java.util.List<CTAttr> getAttrList()
Gets a List of "attr" elements
-
getAttrArray
@Deprecated CTAttr[] getAttrArray()
Deprecated.Gets array of all "attr" elements
-
getAttrArray
CTAttr getAttrArray(int i)
Gets ith "attr" element
-
sizeOfAttrArray
int sizeOfAttrArray()
Returns number of "attr" element
-
setAttrArray
void setAttrArray(CTAttr[] attrArray)
Sets array of all "attr" element
-
setAttrArray
void setAttrArray(int i, CTAttr attr)
Sets ith "attr" element
-
insertNewAttr
CTAttr insertNewAttr(int i)
Inserts and returns a new empty value (as xml) as the ith "attr" element
-
addNewAttr
CTAttr addNewAttr()
Appends and returns a new empty value (as xml) as the last "attr" element
-
removeAttr
void removeAttr(int i)
Removes the ith "attr" element
-
-