java.lang.Object
org.docx4j.com.microsoft.schemas.office.drawing.x2012.main.CTObjectPr
All Implemented Interfaces:
Child

public class CTObjectPr
extends java.lang.Object
implements Child

Java class for CT_ObjectPr complex type.

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

 <complexType name="CT_ObjectPr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="objectId" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="isActiveX" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="linkType" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.Boolean isActiveX  
    protected java.lang.String linkType  
    protected java.lang.String objectId  
  • Constructor Summary

    Constructors
    Constructor Description
    CTObjectPr()  
  • 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 getLinkType()
    Gets the value of the linkType property.
    java.lang.String getObjectId()
    Gets the value of the objectId property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.lang.Boolean isIsActiveX()
    Gets the value of the isActiveX property.
    void setIsActiveX​(java.lang.Boolean value)
    Sets the value of the isActiveX property.
    void setLinkType​(java.lang.String value)
    Sets the value of the linkType property.
    void setObjectId​(java.lang.String value)
    Sets the value of the objectId property.
    void setParent​(java.lang.Object parent)  

    Methods inherited from class java.lang.Object

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

    • objectId

      protected java.lang.String objectId
    • isActiveX

      protected java.lang.Boolean isActiveX
    • linkType

      protected java.lang.String linkType
  • Constructor Details

    • CTObjectPr

      public CTObjectPr()
  • Method Details

    • getObjectId

      public java.lang.String getObjectId()
      Gets the value of the objectId property.
      Returns:
      possible object is String
    • setObjectId

      public void setObjectId​(java.lang.String value)
      Sets the value of the objectId property.
      Parameters:
      value - allowed object is String
    • isIsActiveX

      public java.lang.Boolean isIsActiveX()
      Gets the value of the isActiveX property.
      Returns:
      possible object is Boolean
    • setIsActiveX

      public void setIsActiveX​(java.lang.Boolean value)
      Sets the value of the isActiveX property.
      Parameters:
      value - allowed object is Boolean
    • getLinkType

      public java.lang.String getLinkType()
      Gets the value of the linkType property.
      Returns:
      possible object is String
    • setLinkType

      public void setLinkType​(java.lang.String value)
      Sets the value of the linkType property.
      Parameters:
      value - allowed object is String
    • 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.