Class CTTransformEffect

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

public class CTTransformEffect extends Object implements Child

Java class for CT_TransformEffect complex type.

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

 <complexType name="CT_TransformEffect">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="sx" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="100000" />
       <attribute name="sy" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="100000" />
       <attribute name="kx" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_FixedAngle" default="0" />
       <attribute name="ky" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_FixedAngle" default="0" />
       <attribute name="tx" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" default="0" />
       <attribute name="ty" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" default="0" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected Integer
     
    protected Integer
     
    protected Integer
     
    protected Integer
     
    protected Long
     
    protected Long
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    int
    Gets the value of the kx property.
    int
    Gets the value of the ky property.
    Gets the parent object in the object tree representing the unmarshalled xml document.
    int
    Gets the value of the sx property.
    int
    Gets the value of the sy property.
    long
    Gets the value of the tx property.
    long
    Gets the value of the ty property.
    void
    setKx(Integer value)
    Sets the value of the kx property.
    void
    setKy(Integer value)
    Sets the value of the ky property.
    void
    setParent(Object parent)
     
    void
    setSx(Integer value)
    Sets the value of the sx property.
    void
    setSy(Integer value)
    Sets the value of the sy property.
    void
    setTx(Long value)
    Sets the value of the tx property.
    void
    setTy(Long value)
    Sets the value of the ty property.

    Methods inherited from class java.lang.Object

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

  • Constructor Details

    • CTTransformEffect

      public CTTransformEffect()
  • Method Details

    • getSx

      public int getSx()
      Gets the value of the sx property.
      Returns:
      possible object is Integer
    • setSx

      public void setSx(Integer value)
      Sets the value of the sx property.
      Parameters:
      value - allowed object is Integer
    • getSy

      public int getSy()
      Gets the value of the sy property.
      Returns:
      possible object is Integer
    • setSy

      public void setSy(Integer value)
      Sets the value of the sy property.
      Parameters:
      value - allowed object is Integer
    • getKx

      public int getKx()
      Gets the value of the kx property.
      Returns:
      possible object is Integer
    • setKx

      public void setKx(Integer value)
      Sets the value of the kx property.
      Parameters:
      value - allowed object is Integer
    • getKy

      public int getKy()
      Gets the value of the ky property.
      Returns:
      possible object is Integer
    • setKy

      public void setKy(Integer value)
      Sets the value of the ky property.
      Parameters:
      value - allowed object is Integer
    • getTx

      public long getTx()
      Gets the value of the tx property.
      Returns:
      possible object is Long
    • setTx

      public void setTx(Long value)
      Sets the value of the tx property.
      Parameters:
      value - allowed object is Long
    • getTy

      public long getTy()
      Gets the value of the ty property.
      Returns:
      possible object is Long
    • setTy

      public void setTy(Long value)
      Sets the value of the ty property.
      Parameters:
      value - allowed object is Long
    • 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.