org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements
Class EPStyleRegion

java.lang.Object
  extended by org.apache.avalon.framework.logger.AbstractLogEnabled
      extended by org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements.BaseElementProcessor
          extended by org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements.EPStyleRegion
All Implemented Interfaces:
Component, LogEnabled, ElementProcessor, POIFSElementProcessor

public class EPStyleRegion
extends BaseElementProcessor

No-op implementation of ElementProcessor to handle the "StyleRegion" tag This element is a container of other elements and has four attributes that define the boundaries of the region.

Version:
CVS $Id: EPStyleRegion.html 1304258 2012-03-23 10:09:27Z ilgrosso $
Author:
Marc Johnson (marc_johnson27591@hotmail.com), Andrew C. Oliver (acoliver2@users.sourceforge.net)

Field Summary
 
Fields inherited from interface org.apache.cocoon.components.elementprocessor.ElementProcessor
ROLE
 
Constructor Summary
EPStyleRegion()
          constructor
 
Method Summary
 Hashtable getColorHash()
           
 int getEndCol()
           
 int getEndRow()
           
 int getStartCol()
           
 int getStartRow()
           
 org.apache.poi.hssf.usermodel.HSSFCellStyle getStyle()
           
 void initialize(Attribute[] attributes, ElementProcessor parent)
          Override of Initialize() implementation
 boolean isValid()
           
 
Methods inherited from class org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements.BaseElementProcessor
acceptCharacters, acceptWhitespaceCharacters, endProcessing, getAncestor, getAttributes, getCell, getData, getFilesystem, getParent, getSheet, getValue, getWorkbook, setFilesystem
 
Methods inherited from class org.apache.avalon.framework.logger.AbstractLogEnabled
enableLogging, getLogger, setupLogger, setupLogger, setupLogger
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EPStyleRegion

public EPStyleRegion()
constructor

Method Detail

initialize

public void initialize(Attribute[] attributes,
                       ElementProcessor parent)
                throws IOException
Override of Initialize() implementation

Specified by:
initialize in interface ElementProcessor
Overrides:
initialize in class BaseElementProcessor
Parameters:
attributes - the array of Attribute instances; may be empty, will never be null
parent - the parent ElementProcessor; may be null
Throws:
IOException - if anything is wrong

getStartRow

public int getStartRow()
                throws IOException
Returns:
start row
Throws:
IOException

getStartCol

public int getStartCol()
                throws IOException
Returns:
start column
Throws:
IOException

getEndRow

public int getEndRow()
              throws IOException
Returns:
end row
Throws:
IOException

getEndCol

public int getEndCol()
              throws IOException
Returns:
end column
Throws:
IOException

getStyle

public org.apache.poi.hssf.usermodel.HSSFCellStyle getStyle()
Returns:
HSSFCellStyle associated with this style region.

getColorHash

public Hashtable getColorHash()
Returns:
instance created in the EPStyles instance from HSSFColor.getTripletHash();
See Also:
HSSFColor.getTripletHash()

isValid

public boolean isValid()
Returns:
validity (used to determine whether this is a big wasteful region with no purpose (gnumeric does this


Copyright © 1999-2010 The Apache Software Foundation. All Rights Reserved.