Class CTLocation

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

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

    • ref

      protected String ref
    • firstHeaderRow

      protected long firstHeaderRow
    • firstDataRow

      protected long firstDataRow
    • firstDataCol

      protected long firstDataCol
    • rowPageCount

      protected Long rowPageCount
    • colPageCount

      protected Long colPageCount
  • Constructor Details

    • CTLocation

      public CTLocation()
  • Method Details

    • getRef

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

      public void setRef(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(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(Long value)
      Sets the value of the colPageCount 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.