Class CTTransform2D

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

public class CTTransform2D
extends java.lang.Object
implements Child

Java class for CT_Transform2D complex type.

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

 <complexType name="CT_Transform2D">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="off" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/>
         <element name="ext" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/>
       </sequence>
       <attribute name="rot" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" default="0" />
       <attribute name="flipH" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="flipV" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected CTPositiveSize2D ext  
    protected java.lang.Boolean flipH  
    protected java.lang.Boolean flipV  
    protected CTPoint2D off  
    protected java.lang.Integer rot  
  • Constructor Summary

    Constructors
    Constructor Description
    CTTransform2D()  
  • 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.
    CTPositiveSize2D getExt()
    Gets the value of the ext property.
    CTPoint2D getOff()
    Gets the value of the off property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    int getRot()
    Gets the value of the rot property.
    boolean isFlipH()
    Gets the value of the flipH property.
    boolean isFlipV()
    Gets the value of the flipV property.
    void setExt​(CTPositiveSize2D value)
    Sets the value of the ext property.
    void setFlipH​(java.lang.Boolean value)
    Sets the value of the flipH property.
    void setFlipV​(java.lang.Boolean value)
    Sets the value of the flipV property.
    void setOff​(CTPoint2D value)
    Sets the value of the off property.
    void setParent​(java.lang.Object parent)  
    void setRot​(java.lang.Integer value)
    Sets the value of the rot property.

    Methods inherited from class java.lang.Object

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

    • off

      protected CTPoint2D off
    • ext

      protected CTPositiveSize2D ext
    • rot

      protected java.lang.Integer rot
    • flipH

      protected java.lang.Boolean flipH
    • flipV

      protected java.lang.Boolean flipV
  • Constructor Details

    • CTTransform2D

      public CTTransform2D()
  • Method Details

    • getOff

      public CTPoint2D getOff()
      Gets the value of the off property.
      Returns:
      possible object is CTPoint2D
    • setOff

      public void setOff​(CTPoint2D value)
      Sets the value of the off property.
      Parameters:
      value - allowed object is CTPoint2D
    • getExt

      public CTPositiveSize2D getExt()
      Gets the value of the ext property.
      Returns:
      possible object is CTPositiveSize2D
    • setExt

      public void setExt​(CTPositiveSize2D value)
      Sets the value of the ext property.
      Parameters:
      value - allowed object is CTPositiveSize2D
    • getRot

      public int getRot()
      Gets the value of the rot property.
      Returns:
      possible object is Integer
    • setRot

      public void setRot​(java.lang.Integer value)
      Sets the value of the rot property.
      Parameters:
      value - allowed object is Integer
    • isFlipH

      public boolean isFlipH()
      Gets the value of the flipH property.
      Returns:
      possible object is Boolean
    • setFlipH

      public void setFlipH​(java.lang.Boolean value)
      Sets the value of the flipH property.
      Parameters:
      value - allowed object is Boolean
    • isFlipV

      public boolean isFlipV()
      Gets the value of the flipV property.
      Returns:
      possible object is Boolean
    • setFlipV

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