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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTWrapPath.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 CTPoint2DaddNewLineTo()Appends and returns a new empty value (as xml) as the last "lineTo" elementCTPoint2DaddNewStart()Appends and returns a new empty "start" elementbooleangetEdited()Gets the "edited" attributeCTPoint2D[]getLineToArray()Deprecated.CTPoint2DgetLineToArray(int i)Gets ith "lineTo" elementjava.util.List<CTPoint2D>getLineToList()Gets a List of "lineTo" elementsCTPoint2DgetStart()Gets the "start" elementCTPoint2DinsertNewLineTo(int i)Inserts and returns a new empty value (as xml) as the ith "lineTo" elementbooleanisSetEdited()True if has "edited" attributevoidremoveLineTo(int i)Removes the ith "lineTo" elementvoidsetEdited(boolean edited)Sets the "edited" attributevoidsetLineToArray(int i, CTPoint2D lineTo)Sets ith "lineTo" elementvoidsetLineToArray(CTPoint2D[] lineToArray)Sets array of all "lineTo" elementvoidsetStart(CTPoint2D start)Sets the "start" elementintsizeOfLineToArray()Returns number of "lineTo" elementvoidunsetEdited()Unsets the "edited" attributeXmlBooleanxgetEdited()Gets (as xml) the "edited" attributevoidxsetEdited(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, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
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
@Deprecated CTPoint2D[] getLineToArray()
Deprecated.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
-
-