org.apache.cocoon.serialization.hssfhelpers.elementprocessors
public class: EPFooter [javadoc |
source]
java.lang.Object
org.apache.cocoon.serialization.hssfhelpers.elementprocessors.BaseElementProcessor
org.apache.cocoon.serialization.hssfhelpers.elementprocessors.EPFooter
All Implemented Interfaces:
ElementProcessor
No-op implementation of ElementProcessor to handle the "Footer" tag
This element has three attributes: Left, Middle, and Top, and no
contents.
This element is not used in HSSFSerializer 1.0
- author:
Marc - Johnson (marc_johnson27591@hotmail.com)
| Method from org.apache.cocoon.serialization.hssfhelpers.elementprocessors.EPFooter Summary: |
|---|
|
getLeft, getMiddle, getRight |
| 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.EPFooter Detail: |
public String getLeft() {
if (_left == null)
{
_left = getValue(_left_attribute);
if (_left == null)
{
_left = "";
}
}
return _left;
}
|
public String getMiddle() {
if (_middle == null)
{
_middle = getValue(_middle_attribute);
if (_middle == null)
{
_middle = "";
}
}
return _middle;
}
|
public String getRight() {
if (_right == null)
{
_right = getValue(_right_attribute);
if (_right == null)
{
_right = "";
}
}
return _right;
}
|