Interface CTDivs
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTDivs extends XmlObject
An XML CT_Divs(@http://schemas.openxmlformats.org/wordprocessingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTDivs.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 CTDiv
addNewDiv()
Appends and returns a new empty value (as xml) as the last "div" elementCTDiv[]
getDivArray()
Deprecated.CTDiv
getDivArray(int i)
Gets ith "div" elementjava.util.List<CTDiv>
getDivList()
Gets a List of "div" elementsCTDiv
insertNewDiv(int i)
Inserts and returns a new empty value (as xml) as the ith "div" elementvoid
removeDiv(int i)
Removes the ith "div" elementvoid
setDivArray(int i, CTDiv div)
Sets ith "div" elementvoid
setDivArray(CTDiv[] divArray)
Sets array of all "div" elementint
sizeOfDivArray()
Returns number of "div" 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
-
getDivList
java.util.List<CTDiv> getDivList()
Gets a List of "div" elements
-
getDivArray
@Deprecated CTDiv[] getDivArray()
Deprecated.Gets array of all "div" elements
-
getDivArray
CTDiv getDivArray(int i)
Gets ith "div" element
-
sizeOfDivArray
int sizeOfDivArray()
Returns number of "div" element
-
setDivArray
void setDivArray(CTDiv[] divArray)
Sets array of all "div" element
-
setDivArray
void setDivArray(int i, CTDiv div)
Sets ith "div" element
-
insertNewDiv
CTDiv insertNewDiv(int i)
Inserts and returns a new empty value (as xml) as the ith "div" element
-
addNewDiv
CTDiv addNewDiv()
Appends and returns a new empty value (as xml) as the last "div" element
-
removeDiv
void removeDiv(int i)
Removes the ith "div" element
-
-