Class CTFFCheckBox

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

public class CTFFCheckBox extends Object implements Child

Java class for CT_FFCheckBox complex type.

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

 <complexType name="CT_FFCheckBox">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <choice>
           <element name="size" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_HpsMeasure"/>
           <element name="sizeAuto" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}BooleanDefaultTrue"/>
         </choice>
         <element name="default" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}BooleanDefaultTrue" minOccurs="0"/>
         <element name="checked" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}BooleanDefaultTrue" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTFFCheckBox

      public CTFFCheckBox()
  • Method Details

    • getSize

      public HpsMeasure getSize()
      Gets the value of the size property.
      Returns:
      possible object is HpsMeasure
    • setSize

      public void setSize(HpsMeasure value)
      Sets the value of the size property.
      Parameters:
      value - allowed object is HpsMeasure
    • getSizeAuto

      public BooleanDefaultTrue getSizeAuto()
      Gets the value of the sizeAuto property.
      Returns:
      possible object is BooleanDefaultTrue
    • setSizeAuto

      public void setSizeAuto(BooleanDefaultTrue value)
      Sets the value of the sizeAuto property.
      Parameters:
      value - allowed object is BooleanDefaultTrue
    • getDefault

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

      public void setDefault(BooleanDefaultTrue value)
      Sets the value of the default property.
      Parameters:
      value - allowed object is BooleanDefaultTrue
    • getChecked

      public BooleanDefaultTrue getChecked()
      Gets the value of the checked property.
      Returns:
      possible object is BooleanDefaultTrue
    • setChecked

      public void setChecked(BooleanDefaultTrue value)
      Sets the value of the checked property.
      Parameters:
      value - allowed object is BooleanDefaultTrue
    • getParent

      public 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(Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, 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.