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.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTFFTextInput>
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 CTString
addNewDefault()
Appends and returns a new empty "default" elementCTString
addNewFormat()
Appends and returns a new empty "format" elementCTDecimalNumber
addNewMaxLength()
Appends and returns a new empty "maxLength" elementCTFFTextType
addNewType()
Appends and returns a new empty "type" elementCTString
getDefault()
Gets the "default" elementCTString
getFormat()
Gets the "format" elementCTDecimalNumber
getMaxLength()
Gets the "maxLength" elementCTFFTextType
getType()
Gets the "type" elementboolean
isSetDefault()
True if has "default" elementboolean
isSetFormat()
True if has "format" elementboolean
isSetMaxLength()
True if has "maxLength" elementboolean
isSetType()
True if has "type" elementvoid
setDefault(CTString xdefault)
Sets the "default" elementvoid
setFormat(CTString format)
Sets the "format" elementvoid
setMaxLength(CTDecimalNumber maxLength)
Sets the "maxLength" elementvoid
setType(CTFFTextType type)
Sets the "type" elementvoid
unsetDefault()
Unsets the "default" elementvoid
unsetFormat()
Unsets the "format" elementvoid
unsetMaxLength()
Unsets the "maxLength" elementvoid
unsetType()
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, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
Factory
static final DocumentFactory<CTFFTextInput> Factory
-
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
-
-