Interface CTWrapPath
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTWrapPath extends XmlObject
An XML CT_WrapPath(@http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTWrapPath>
Factory
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 Modifier and Type Method Description CTPoint2D
addNewLineTo()
Appends and returns a new empty value (as xml) as the last "lineTo" elementCTPoint2D
addNewStart()
Appends and returns a new empty "start" elementboolean
getEdited()
Gets the "edited" attributeCTPoint2D[]
getLineToArray()
Gets array of all "lineTo" elementsCTPoint2D
getLineToArray(int i)
Gets ith "lineTo" elementjava.util.List<CTPoint2D>
getLineToList()
Gets a List of "lineTo" elementsCTPoint2D
getStart()
Gets the "start" elementCTPoint2D
insertNewLineTo(int i)
Inserts and returns a new empty value (as xml) as the ith "lineTo" elementboolean
isSetEdited()
True if has "edited" attributevoid
removeLineTo(int i)
Removes the ith "lineTo" elementvoid
setEdited(boolean edited)
Sets the "edited" attributevoid
setLineToArray(int i, CTPoint2D lineTo)
Sets ith "lineTo" elementvoid
setLineToArray(CTPoint2D[] lineToArray)
Sets array of all "lineTo" elementvoid
setStart(CTPoint2D start)
Sets the "start" elementint
sizeOfLineToArray()
Returns number of "lineTo" elementvoid
unsetEdited()
Unsets the "edited" attributeXmlBoolean
xgetEdited()
Gets (as xml) the "edited" attributevoid
xsetEdited(XmlBoolean edited)
Sets (as xml) the "edited" attribute-
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, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
Factory
static final DocumentFactory<CTWrapPath> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getStart
CTPoint2D getStart()
Gets the "start" element
-
setStart
void setStart(CTPoint2D start)
Sets the "start" element
-
addNewStart
CTPoint2D addNewStart()
Appends and returns a new empty "start" element
-
getLineToList
java.util.List<CTPoint2D> getLineToList()
Gets a List of "lineTo" elements
-
getLineToArray
CTPoint2D[] getLineToArray()
Gets array of all "lineTo" elements
-
getLineToArray
CTPoint2D getLineToArray(int i)
Gets ith "lineTo" element
-
sizeOfLineToArray
int sizeOfLineToArray()
Returns number of "lineTo" element
-
setLineToArray
void setLineToArray(CTPoint2D[] lineToArray)
Sets array of all "lineTo" element
-
setLineToArray
void setLineToArray(int i, CTPoint2D lineTo)
Sets ith "lineTo" element
-
insertNewLineTo
CTPoint2D insertNewLineTo(int i)
Inserts and returns a new empty value (as xml) as the ith "lineTo" element
-
addNewLineTo
CTPoint2D addNewLineTo()
Appends and returns a new empty value (as xml) as the last "lineTo" element
-
removeLineTo
void removeLineTo(int i)
Removes the ith "lineTo" element
-
getEdited
boolean getEdited()
Gets the "edited" attribute
-
xgetEdited
XmlBoolean xgetEdited()
Gets (as xml) the "edited" attribute
-
isSetEdited
boolean isSetEdited()
True if has "edited" attribute
-
setEdited
void setEdited(boolean edited)
Sets the "edited" attribute
-
xsetEdited
void xsetEdited(XmlBoolean edited)
Sets (as xml) the "edited" attribute
-
unsetEdited
void unsetEdited()
Unsets the "edited" attribute
-
-