Class CTOdso

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

public class CTOdso extends Object implements Child

Java class for CT_Odso complex type.

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

 <complexType name="CT_Odso">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="udl" 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="table" 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="src" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_Rel" minOccurs="0"/>
         <element name="colDelim" 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="type" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_MailMergeSourceType" minOccurs="0"/>
         <element name="fHdr" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}BooleanDefaultTrue" minOccurs="0"/>
         <element name="fieldMapData" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_OdsoFieldMapData" maxOccurs="unbounded" minOccurs="0"/>
         <element name="recipientData" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_Rel" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTOdso

      public CTOdso()
  • Method Details

    • getUdl

      public CTOdso.Udl getUdl()
      Gets the value of the udl property.
      Returns:
      possible object is CTOdso.Udl
    • setUdl

      public void setUdl(CTOdso.Udl value)
      Sets the value of the udl property.
      Parameters:
      value - allowed object is CTOdso.Udl
    • getTable

      public CTOdso.Table getTable()
      Gets the value of the table property.
      Returns:
      possible object is CTOdso.Table
    • setTable

      public void setTable(CTOdso.Table value)
      Sets the value of the table property.
      Parameters:
      value - allowed object is CTOdso.Table
    • getSrc

      public CTRel getSrc()
      Gets the value of the src property.
      Returns:
      possible object is CTRel
    • setSrc

      public void setSrc(CTRel value)
      Sets the value of the src property.
      Parameters:
      value - allowed object is CTRel
    • getColDelim

      public CTOdso.ColDelim getColDelim()
      Gets the value of the colDelim property.
      Returns:
      possible object is CTOdso.ColDelim
    • setColDelim

      public void setColDelim(CTOdso.ColDelim value)
      Sets the value of the colDelim property.
      Parameters:
      value - allowed object is CTOdso.ColDelim
    • getType

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

      public void setType(CTMailMergeSourceType value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is CTMailMergeSourceType
    • getFHdr

      public BooleanDefaultTrue getFHdr()
      Gets the value of the fHdr property.
      Returns:
      possible object is BooleanDefaultTrue
    • setFHdr

      public void setFHdr(BooleanDefaultTrue value)
      Sets the value of the fHdr property.
      Parameters:
      value - allowed object is BooleanDefaultTrue
    • getFieldMapData

      public List<CTOdsoFieldMapData> getFieldMapData()
      Gets the value of the fieldMapData property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the fieldMapData property.

      For example, to add a new item, do as follows:

          getFieldMapData().add(newItem);
       

      Objects of the following type(s) are allowed in the list CTOdsoFieldMapData

    • getRecipientData

      public List<CTRel> getRecipientData()
      Gets the value of the recipientData property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the recipientData property.

      For example, to add a new item, do as follows:

          getRecipientData().add(newItem);
       

      Objects of the following type(s) are allowed in the list CTRel

    • 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.