Class CTCommonViewProperties

java.lang.Object
org.pptx4j.pml.CTCommonViewProperties
All Implemented Interfaces:
Child

public class CTCommonViewProperties
extends java.lang.Object
implements Child

Java class for CT_CommonViewProperties complex type.

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

 <complexType name="CT_CommonViewProperties">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="scale" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Scale2D"/>
         <element name="origin" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D"/>
       </sequence>
       <attribute name="varScale" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected CTPoint2D origin  
    protected CTScale2D scale  
    protected java.lang.Boolean varScale  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTCommonViewProperties()  
  • Method Summary

    Modifier and Type Method Description
    void afterUnmarshal​(javax.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    CTPoint2D getOrigin()
    Gets the value of the origin property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    CTScale2D getScale()
    Gets the value of the scale property.
    boolean isVarScale()
    Gets the value of the varScale property.
    void setOrigin​(CTPoint2D value)
    Sets the value of the origin property.
    void setParent​(java.lang.Object parent)  
    void setScale​(CTScale2D value)
    Sets the value of the scale property.
    void setVarScale​(java.lang.Boolean value)
    Sets the value of the varScale property.

    Methods inherited from class java.lang.Object

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

  • Constructor Details

  • Method Details

    • getScale

      public CTScale2D getScale()
      Gets the value of the scale property.
      Returns:
      possible object is CTScale2D
    • setScale

      public void setScale​(CTScale2D value)
      Sets the value of the scale property.
      Parameters:
      value - allowed object is CTScale2D
    • getOrigin

      public CTPoint2D getOrigin()
      Gets the value of the origin property.
      Returns:
      possible object is CTPoint2D
    • setOrigin

      public void setOrigin​(CTPoint2D value)
      Sets the value of the origin property.
      Parameters:
      value - allowed object is CTPoint2D
    • isVarScale

      public boolean isVarScale()
      Gets the value of the varScale property.
      Returns:
      possible object is Boolean
    • setVarScale

      public void setVarScale​(java.lang.Boolean value)
      Sets the value of the varScale 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​(javax.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.