Class CTConsolidation

java.lang.Object
org.xlsx4j.sml.CTConsolidation
All Implemented Interfaces:
Child

public class CTConsolidation
extends java.lang.Object
implements Child

Java class for CT_Consolidation complex type.

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

 <complexType name="CT_Consolidation">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="pages" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_Pages" minOccurs="0"/>
         <element name="rangeSets" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_RangeSets"/>
       </sequence>
       <attribute name="autoPage" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.Boolean autoPage  
    protected CTPages pages  
    protected CTRangeSets rangeSets  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTConsolidation()  
  • 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.
    CTPages getPages()
    Gets the value of the pages property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    CTRangeSets getRangeSets()
    Gets the value of the rangeSets property.
    boolean isAutoPage()
    Gets the value of the autoPage property.
    void setAutoPage​(java.lang.Boolean value)
    Sets the value of the autoPage property.
    void setPages​(CTPages value)
    Sets the value of the pages property.
    void setParent​(java.lang.Object parent)  
    void setRangeSets​(CTRangeSets value)
    Sets the value of the rangeSets 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

    • getPages

      public CTPages getPages()
      Gets the value of the pages property.
      Returns:
      possible object is CTPages
    • setPages

      public void setPages​(CTPages value)
      Sets the value of the pages property.
      Parameters:
      value - allowed object is CTPages
    • getRangeSets

      public CTRangeSets getRangeSets()
      Gets the value of the rangeSets property.
      Returns:
      possible object is CTRangeSets
    • setRangeSets

      public void setRangeSets​(CTRangeSets value)
      Sets the value of the rangeSets property.
      Parameters:
      value - allowed object is CTRangeSets
    • isAutoPage

      public boolean isAutoPage()
      Gets the value of the autoPage property.
      Returns:
      possible object is Boolean
    • setAutoPage

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