Class CTSdtCheckbox

java.lang.Object
org.docx4j.w14.CTSdtCheckbox
All Implemented Interfaces:
Child

public class CTSdtCheckbox extends Object implements Child

Java class for CT_SdtCheckbox complex type.

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

 <complexType name="CT_SdtCheckbox">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="checked" type="{http://schemas.microsoft.com/office/word/2010/wordml}CT_OnOff" minOccurs="0"/>
         <element name="checkedState" type="{http://schemas.microsoft.com/office/word/2010/wordml}CT_SdtCheckboxSymbol" minOccurs="0"/>
         <element name="uncheckedState" type="{http://schemas.microsoft.com/office/word/2010/wordml}CT_SdtCheckboxSymbol" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTSdtCheckbox

      public CTSdtCheckbox()
  • Method Details

    • getChecked

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

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

      public CTSdtCheckboxSymbol getCheckedState()
      Gets the value of the checkedState property.
      Returns:
      possible object is CTSdtCheckboxSymbol
    • setCheckedState

      public void setCheckedState(CTSdtCheckboxSymbol value)
      Sets the value of the checkedState property.
      Parameters:
      value - allowed object is CTSdtCheckboxSymbol
    • getUncheckedState

      public CTSdtCheckboxSymbol getUncheckedState()
      Gets the value of the uncheckedState property.
      Returns:
      possible object is CTSdtCheckboxSymbol
    • setUncheckedState

      public void setUncheckedState(CTSdtCheckboxSymbol value)
      Sets the value of the uncheckedState property.
      Parameters:
      value - allowed object is CTSdtCheckboxSymbol
    • 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.