org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements
public class: EPFrame [javadoc |
source]
java.lang.Object
org.apache.avalon.framework.logger.AbstractLogEnabled
org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements.BaseElementProcessor
org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements.EPFrame
All Implemented Interfaces:
POIFSElementProcessor
No-op implementation of ElementProcessor to handle the "Frame" tag
This element has a small number of Attributes and no content.
This element is not used in HSSFSerializer 1.0
- author:
Marc - Johnson (marc_johnson27591@hotmail.com)
- version:
CVS - $Id: EPFrame.java 433543 2006-08-22 06:22:54Z crossley $
| Methods from org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements.BaseElementProcessor: |
|---|
|
acceptCharacters, acceptWhitespaceCharacters, endProcessing, getAncestor, getAttributes, getCell, getData, getFilesystem, getParent, getSheet, getValue, getWorkbook, initialize, setFilesystem |
| Method from org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements.EPFrame Detail: |
public Anchors getAnchors() throws IOException {
if (_object_anchor_type == null) {
_object_anchor_type =
new Anchors(getValue(_object_anchor_type_attribute));
}
return _object_anchor_type;
}
|
public int getDirection() throws IOException {
if (_direction == null) {
_direction =
NumericConverter.extractInteger(
getValue(_direction_attribute),
_direction_validator);
}
return _direction.intValue();
}
|
public String getLabel() throws IOException {
if (_label == null) {
_label = getValue(_label_attribute);
if (_label == null) {
throw new IOException(
"missing " + _label_attribute + " attribute");
}
}
return _label;
}
|
public String getObjectBound() throws IOException {
if (_object_bound == null) {
_object_bound = getValue(_object_bound_attribute);
if (_object_bound == null) {
throw new IOException(
"missing " + _object_bound_attribute + " attribute");
}
}
return _object_bound;
}
|
public Offsets getOffsets() throws IOException {
if (_object_offset == null) {
_object_offset = new Offsets(getValue(_object_offset_attribute));
}
return _object_offset;
}
|