Package org.xlsx4j.sml
Class CTLocation
java.lang.Object
org.xlsx4j.sml.CTLocation
- All Implemented Interfaces:
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 -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidafterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent) This method is invoked by the JAXB implementation on each instance when unmarshalling completes.longGets the value of the colPageCount property.longGets the value of the firstDataCol property.longGets the value of the firstDataRow property.longGets the value of the firstHeaderRow property.Gets the parent object in the object tree representing the unmarshalled xml document.getRef()Gets the value of the ref property.longGets the value of the rowPageCount property.voidsetColPageCount(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.voidvoidSets the value of the ref property.voidsetRowPageCount(Long value) Sets the value of the rowPageCount property.
-
Field Details
-
ref
-
firstHeaderRow
protected long firstHeaderRow -
firstDataRow
protected long firstDataRow -
firstDataCol
protected long firstDataCol -
rowPageCount
-
colPageCount
-
-
Constructor Details
-
CTLocation
public CTLocation()
-
-
Method Details
-
getRef
Gets the value of the ref property.- Returns:
- possible object is
String
-
setRef
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
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
Sets the value of the colPageCount property.- Parameters:
value- allowed object isLong
-
getParent
Gets the parent object in the object tree representing the unmarshalled xml document. -
setParent
-
afterUnmarshal
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.
-