Class CTFFTextInput

java.lang.Object
org.docx4j.wml.CTFFTextInput
All Implemented Interfaces:
Child

public class CTFFTextInput
extends java.lang.Object
implements Child

Java class for CT_FFTextInput complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="CT_FFTextInput">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="type" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_FFTextType" minOccurs="0"/>
         <element name="default" minOccurs="0">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <attribute name="val" type="{http://www.w3.org/2001/XMLSchema}string" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="maxLength" minOccurs="0">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <attribute name="val" use="required">
                   <simpleType>
                     <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
                     </restriction>
                   </simpleType>
                 </attribute>
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="format" minOccurs="0">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <attribute name="val" type="{http://www.w3.org/2001/XMLSchema}string" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTFFTextInput

      public CTFFTextInput()
  • Method Details

    • getType

      public CTFFTextType getType()
      Gets the value of the type property.
      Returns:
      possible object is CTFFTextType
    • setType

      public void setType​(CTFFTextType value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is CTFFTextType
    • getDefault

      public CTFFTextInput.Default getDefault()
      Gets the value of the default property.
      Returns:
      possible object is CTFFTextInput.Default
    • setDefault

      public void setDefault​(CTFFTextInput.Default value)
      Sets the value of the default property.
      Parameters:
      value - allowed object is CTFFTextInput.Default
    • getMaxLength

      public CTFFTextInput.MaxLength getMaxLength()
      Gets the value of the maxLength property.
      Returns:
      possible object is CTFFTextInput.MaxLength
    • setMaxLength

      public void setMaxLength​(CTFFTextInput.MaxLength value)
      Sets the value of the maxLength property.
      Parameters:
      value - allowed object is CTFFTextInput.MaxLength
    • getFormat

      public CTFFTextInput.Format getFormat()
      Gets the value of the format property.
      Returns:
      possible object is CTFFTextInput.Format
    • setFormat

      public void setFormat​(CTFFTextInput.Format value)
      Sets the value of the format property.
      Parameters:
      value - allowed object is CTFFTextInput.Format
    • getParent

      public java.lang.Object getParent()
      Gets the parent object in the object tree representing the unmarshalled xml document.
      Specified by:
      getParent in interface Child
      Returns:
      The parent object.
    • setParent

      public void setParent​(java.lang.Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal​(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
      This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.