org.apache.cocoon.serialization.hssfhelpers.elementprocessors
public class: EPSelections [javadoc |
source]
java.lang.Object
org.apache.cocoon.serialization.hssfhelpers.elementprocessors.BaseElementProcessor
org.apache.cocoon.serialization.hssfhelpers.elementprocessors.EPSelections
All Implemented Interfaces:
ElementProcessor
No-op implementation of ElementProcessor to handle the "Selections"
tag
This element is a container element with two attributes: CursorCol
and CursorRow, which presumable show where the cursor should be.
This element is not used in HSSFSerializer 1.0
- author:
Marc - Johnson (marc_johnson27591@hotmail.com)
| Method from org.apache.cocoon.serialization.hssfhelpers.elementprocessors.EPSelections Summary: |
|---|
|
getCursorCol, getCursorRow |
| 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.EPSelections Detail: |
public int getCursorCol() throws IOException {
if (_cursor_col == null)
{
_cursor_col = NumericConverter
.extractNonNegativeInteger(getValue(_cursor_col_attribute));
}
return _cursor_col.intValue();
}
|
public int getCursorRow() throws IOException {
if (_cursor_row == null)
{
_cursor_row = NumericConverter
.extractNonNegativeInteger(getValue(_cursor_row_attribute));
}
return _cursor_row.intValue();
}
|