Class CTWrapThrough

java.lang.Object
org.docx4j.dml.wordprocessingDrawing.CTWrapThrough
All Implemented Interfaces:
Child

public class CTWrapThrough
extends java.lang.Object
implements Child

Java class for CT_WrapThrough complex type.

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

 <complexType name="CT_WrapThrough">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="wrapPolygon" type="{http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing}CT_WrapPath"/>
       </sequence>
       <attribute name="wrapText" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing}ST_WrapText" />
       <attribute name="distL" type="{http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing}ST_WrapDistance" />
       <attribute name="distR" type="{http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing}ST_WrapDistance" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.Long distL  
    protected java.lang.Long distR  
    protected CTWrapPath wrapPolygon  
    protected STWrapText wrapText  
  • Constructor Summary

    Constructors
    Constructor Description
    CTWrapThrough()  
  • 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.Long getDistL()
    Gets the value of the distL property.
    java.lang.Long getDistR()
    Gets the value of the distR property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    CTWrapPath getWrapPolygon()
    Gets the value of the wrapPolygon property.
    STWrapText getWrapText()
    Gets the value of the wrapText property.
    void setDistL​(java.lang.Long value)
    Sets the value of the distL property.
    void setDistR​(java.lang.Long value)
    Sets the value of the distR property.
    void setParent​(java.lang.Object parent)  
    void setWrapPolygon​(CTWrapPath value)
    Sets the value of the wrapPolygon property.
    void setWrapText​(STWrapText value)
    Sets the value of the wrapText property.

    Methods inherited from class java.lang.Object

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

    • wrapPolygon

      protected CTWrapPath wrapPolygon
    • wrapText

      protected STWrapText wrapText
    • distL

      protected java.lang.Long distL
    • distR

      protected java.lang.Long distR
  • Constructor Details

    • CTWrapThrough

      public CTWrapThrough()
  • Method Details

    • getWrapPolygon

      public CTWrapPath getWrapPolygon()
      Gets the value of the wrapPolygon property.
      Returns:
      possible object is CTWrapPath
    • setWrapPolygon

      public void setWrapPolygon​(CTWrapPath value)
      Sets the value of the wrapPolygon property.
      Parameters:
      value - allowed object is CTWrapPath
    • getWrapText

      public STWrapText getWrapText()
      Gets the value of the wrapText property.
      Returns:
      possible object is STWrapText
    • setWrapText

      public void setWrapText​(STWrapText value)
      Sets the value of the wrapText property.
      Parameters:
      value - allowed object is STWrapText
    • getDistL

      public java.lang.Long getDistL()
      Gets the value of the distL property.
      Returns:
      possible object is Long
    • setDistL

      public void setDistL​(java.lang.Long value)
      Sets the value of the distL property.
      Parameters:
      value - allowed object is Long
    • getDistR

      public java.lang.Long getDistR()
      Gets the value of the distR property.
      Returns:
      possible object is Long
    • setDistR

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