Class CTCommonViewProperties

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

public class CTCommonViewProperties extends 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 Details

  • Constructor Details

    • CTCommonViewProperties

      public CTCommonViewProperties()
  • 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(Boolean value)
      Sets the value of the varScale property.
      Parameters:
      value - allowed object is Boolean
    • 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.