Class CTObject

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

public class CTObject
extends CTPictureBase

Java class for CT_Object complex type.

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

 <complexType name="CT_Object">
   <complexContent>
     <extension base="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_PictureBase">
       <sequence>
         <element name="control" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_Control" minOccurs="0"/>
       </sequence>
       <attribute name="dxaOrig" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_TwipsMeasure" />
       <attribute name="dyaOrig" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_TwipsMeasure" />
       <attribute ref="{http://schemas.microsoft.com/office/word/2010/wordml}anchorId"/>
     </extension>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.String anchorId  
    protected CTControl control  
    protected java.math.BigInteger dxaOrig  
    protected java.math.BigInteger dyaOrig  

    Fields inherited from class org.docx4j.wml.CTPictureBase

    anyAndAny
  • Constructor Summary

    Constructors
    Constructor Description
    CTObject()  
  • Method Summary

    Modifier and Type Method Description
    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.
    java.lang.String getAnchorId()
    Gets the value of the anchorId property.
    CTControl getControl()
    Gets the value of the control property.
    java.math.BigInteger getDxaOrig()
    Gets the value of the dxaOrig property.
    java.math.BigInteger getDyaOrig()
    Gets the value of the dyaOrig property.
    void setAnchorId​(java.lang.String value)
    Sets the value of the anchorId property.
    void setControl​(CTControl value)
    Sets the value of the control property.
    void setDxaOrig​(java.math.BigInteger value)
    Sets the value of the dxaOrig property.
    void setDyaOrig​(java.math.BigInteger value)
    Sets the value of the dyaOrig property.

    Methods inherited from class org.docx4j.wml.CTPictureBase

    getAnyAndAny, getParent, setParent

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • control

      protected CTControl control
    • dxaOrig

      protected java.math.BigInteger dxaOrig
    • dyaOrig

      protected java.math.BigInteger dyaOrig
    • anchorId

      protected java.lang.String anchorId
  • Constructor Details

    • CTObject

      public CTObject()
  • Method Details

    • getControl

      public CTControl getControl()
      Gets the value of the control property.
      Returns:
      possible object is CTControl
    • setControl

      public void setControl​(CTControl value)
      Sets the value of the control property.
      Parameters:
      value - allowed object is CTControl
    • getDxaOrig

      public java.math.BigInteger getDxaOrig()
      Gets the value of the dxaOrig property.
      Returns:
      possible object is BigInteger
    • setDxaOrig

      public void setDxaOrig​(java.math.BigInteger value)
      Sets the value of the dxaOrig property.
      Parameters:
      value - allowed object is BigInteger
    • getDyaOrig

      public java.math.BigInteger getDyaOrig()
      Gets the value of the dyaOrig property.
      Returns:
      possible object is BigInteger
    • setDyaOrig

      public void setDyaOrig​(java.math.BigInteger value)
      Sets the value of the dyaOrig property.
      Parameters:
      value - allowed object is BigInteger
    • getAnchorId

      public java.lang.String getAnchorId()
      Gets the value of the anchorId property.
      Returns:
      possible object is String
    • setAnchorId

      public void setAnchorId​(java.lang.String value)
      Sets the value of the anchorId property.
      Parameters:
      value - allowed object is String
    • 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.
      Overrides:
      afterUnmarshal in class CTPictureBase
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.