Class CTLocation

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

public class CTLocation
extends java.lang.Object
implements Child

Java class for CT_Location complex type.

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

 <complexType name="CT_Location">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="ref" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_Ref" />
       <attribute name="firstHeaderRow" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="firstDataRow" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="firstDataCol" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="rowPageCount" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="0" />
       <attribute name="colPageCount" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="0" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.Long colPageCount  
    protected long firstDataCol  
    protected long firstDataRow  
    protected long firstHeaderRow  
    protected java.lang.String ref  
    protected java.lang.Long rowPageCount  
  • Constructor Summary

    Constructors
    Constructor Description
    CTLocation()  
  • 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.
    long getColPageCount()
    Gets the value of the colPageCount property.
    long getFirstDataCol()
    Gets the value of the firstDataCol property.
    long getFirstDataRow()
    Gets the value of the firstDataRow property.
    long getFirstHeaderRow()
    Gets the value of the firstHeaderRow property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.lang.String getRef()
    Gets the value of the ref property.
    long getRowPageCount()
    Gets the value of the rowPageCount property.
    void setColPageCount​(java.lang.Long value)
    Sets the value of the colPageCount property.
    void setFirstDataCol​(long value)
    Sets the value of the firstDataCol property.
    void setFirstDataRow​(long value)
    Sets the value of the firstDataRow property.
    void setFirstHeaderRow​(long value)
    Sets the value of the firstHeaderRow property.
    void setParent​(java.lang.Object parent)  
    void setRef​(java.lang.String value)
    Sets the value of the ref property.
    void setRowPageCount​(java.lang.Long value)
    Sets the value of the rowPageCount property.

    Methods inherited from class java.lang.Object

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

    • ref

      protected java.lang.String ref
    • firstHeaderRow

      protected long firstHeaderRow
    • firstDataRow

      protected long firstDataRow
    • firstDataCol

      protected long firstDataCol
    • rowPageCount

      protected java.lang.Long rowPageCount
    • colPageCount

      protected java.lang.Long colPageCount
  • Constructor Details

    • CTLocation

      public CTLocation()
  • Method Details

    • getRef

      public java.lang.String getRef()
      Gets the value of the ref property.
      Returns:
      possible object is String
    • setRef

      public void setRef​(java.lang.String value)
      Sets the value of the ref property.
      Parameters:
      value - allowed object is String
    • getFirstHeaderRow

      public long getFirstHeaderRow()
      Gets the value of the firstHeaderRow property.
    • setFirstHeaderRow

      public void setFirstHeaderRow​(long value)
      Sets the value of the firstHeaderRow property.
    • getFirstDataRow

      public long getFirstDataRow()
      Gets the value of the firstDataRow property.
    • setFirstDataRow

      public void setFirstDataRow​(long value)
      Sets the value of the firstDataRow property.
    • getFirstDataCol

      public long getFirstDataCol()
      Gets the value of the firstDataCol property.
    • setFirstDataCol

      public void setFirstDataCol​(long value)
      Sets the value of the firstDataCol property.
    • getRowPageCount

      public long getRowPageCount()
      Gets the value of the rowPageCount property.
      Returns:
      possible object is Long
    • setRowPageCount

      public void setRowPageCount​(java.lang.Long value)
      Sets the value of the rowPageCount property.
      Parameters:
      value - allowed object is Long
    • getColPageCount

      public long getColPageCount()
      Gets the value of the colPageCount property.
      Returns:
      possible object is Long
    • setColPageCount

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