Interface CTFFTextInput
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTFFTextInput extends XmlObject
An XML CT_FFTextInput(@http://schemas.openxmlformats.org/wordprocessingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTFFTextInput.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 Modifier and Type Method Description CTStringaddNewDefault()Appends and returns a new empty "default" elementCTStringaddNewFormat()Appends and returns a new empty "format" elementCTDecimalNumberaddNewMaxLength()Appends and returns a new empty "maxLength" elementCTFFTextTypeaddNewType()Appends and returns a new empty "type" elementCTStringgetDefault()Gets the "default" elementCTStringgetFormat()Gets the "format" elementCTDecimalNumbergetMaxLength()Gets the "maxLength" elementCTFFTextTypegetType()Gets the "type" elementbooleanisSetDefault()True if has "default" elementbooleanisSetFormat()True if has "format" elementbooleanisSetMaxLength()True if has "maxLength" elementbooleanisSetType()True if has "type" elementvoidsetDefault(CTString xdefault)Sets the "default" elementvoidsetFormat(CTString format)Sets the "format" elementvoidsetMaxLength(CTDecimalNumber maxLength)Sets the "maxLength" elementvoidsetType(CTFFTextType type)Sets the "type" elementvoidunsetDefault()Unsets the "default" elementvoidunsetFormat()Unsets the "format" elementvoidunsetMaxLength()Unsets the "maxLength" elementvoidunsetType()Unsets the "type" 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
-
getType
CTFFTextType getType()
Gets the "type" element
-
isSetType
boolean isSetType()
True if has "type" element
-
setType
void setType(CTFFTextType type)
Sets the "type" element
-
addNewType
CTFFTextType addNewType()
Appends and returns a new empty "type" element
-
unsetType
void unsetType()
Unsets the "type" element
-
getDefault
CTString getDefault()
Gets the "default" element
-
isSetDefault
boolean isSetDefault()
True if has "default" element
-
setDefault
void setDefault(CTString xdefault)
Sets the "default" element
-
addNewDefault
CTString addNewDefault()
Appends and returns a new empty "default" element
-
unsetDefault
void unsetDefault()
Unsets the "default" element
-
getMaxLength
CTDecimalNumber getMaxLength()
Gets the "maxLength" element
-
isSetMaxLength
boolean isSetMaxLength()
True if has "maxLength" element
-
setMaxLength
void setMaxLength(CTDecimalNumber maxLength)
Sets the "maxLength" element
-
addNewMaxLength
CTDecimalNumber addNewMaxLength()
Appends and returns a new empty "maxLength" element
-
unsetMaxLength
void unsetMaxLength()
Unsets the "maxLength" element
-
getFormat
CTString getFormat()
Gets the "format" element
-
isSetFormat
boolean isSetFormat()
True if has "format" element
-
setFormat
void setFormat(CTString format)
Sets the "format" element
-
addNewFormat
CTString addNewFormat()
Appends and returns a new empty "format" element
-
unsetFormat
void unsetFormat()
Unsets the "format" element
-
-