Package org.xlsx4j.sml
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.LongcolPageCountprotected longfirstDataColprotected longfirstDataRowprotected longfirstHeaderRowprotected java.lang.Stringrefprotected java.lang.LongrowPageCount -
Constructor Summary
Constructors Constructor Description CTLocation() -
Method Summary
Modifier and Type Method Description voidafterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)This method is invoked by the JAXB implementation on each instance when unmarshalling completes.longgetColPageCount()Gets the value of the colPageCount property.longgetFirstDataCol()Gets the value of the firstDataCol property.longgetFirstDataRow()Gets the value of the firstDataRow property.longgetFirstHeaderRow()Gets the value of the firstHeaderRow property.java.lang.ObjectgetParent()Gets the parent object in the object tree representing the unmarshalled xml document.java.lang.StringgetRef()Gets the value of the ref property.longgetRowPageCount()Gets the value of the rowPageCount property.voidsetColPageCount(java.lang.Long value)Sets the value of the colPageCount property.voidsetFirstDataCol(long value)Sets the value of the firstDataCol property.voidsetFirstDataRow(long value)Sets the value of the firstDataRow property.voidsetFirstHeaderRow(long value)Sets the value of the firstHeaderRow property.voidsetParent(java.lang.Object parent)voidsetRef(java.lang.String value)Sets the value of the ref property.voidsetRowPageCount(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 isString
-
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 isLong
-
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 isLong
-
getParent
public java.lang.Object getParent()Gets the parent object in the object tree representing the unmarshalled xml document. -
setParent
public void setParent(java.lang.Object parent) -
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.
-