org.apache.cocoon.serialization.hssfhelpers.elementprocessors
public class: EPSelection [javadoc |
source]
java.lang.Object
org.apache.cocoon.serialization.hssfhelpers.elementprocessors.BaseElementProcessor
org.apache.cocoon.serialization.hssfhelpers.elementprocessors.EPSelection
All Implemented Interfaces:
ElementProcessor
No-op implementation of ElementProcessor to handle the
"Selection" tag
This element is a container of other elements and has four
attributes that define the boundaries of the region.
This element is not used in HSSFSerializer 1.0
- author:
Marc - Johnson (marc_johnson27591@hotmail.com)
| Methods from org.apache.cocoon.serialization.hssfhelpers.elementprocessors.BaseElementProcessor: |
|---|
|
acceptCharacters, acceptWhitespaceCharacters, endProcessing, getAttributes, getCell, getData, getFilesystem, getParent, getSheet, getValue, getWorkbook, initialize |
| Method from org.apache.cocoon.serialization.hssfhelpers.elementprocessors.EPSelection Detail: |
public int getEndCol() throws IOException {
if (_end_col == null)
{
_end_col =
NumericConverter
.extractNonNegativeInteger(getValue(_end_col_attribute));
}
return _end_col.intValue();
}
|
public int getEndRow() throws IOException {
if (_end_row == null)
{
_end_row =
NumericConverter
.extractNonNegativeInteger(getValue(_end_row_attribute));
}
return _end_row.intValue();
}
|
public int getStartCol() throws IOException {
if (_start_col == null)
{
_start_col = NumericConverter
.extractNonNegativeInteger(getValue(_start_col_attribute));
}
return _start_col.intValue();
}
|
public int getStartRow() throws IOException {
if (_start_row == null)
{
_start_row = NumericConverter
.extractNonNegativeInteger(getValue(_start_row_attribute));
}
return _start_row.intValue();
}
|