Spreadsheet Toolkit

corpus.excel
Class Component

java.lang.Object
  |
  +--corpus.excel.Component
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
Cell, Column, Formula, FormulaComponent, Row, WorkBook, WorkSheet

public abstract class Component
extends java.lang.Object
implements java.io.Serializable

Used to store the internal representation of a Spreadsheet. All elements extend component. By implementing Serializable it is possible to write the internal representation out to disk.

See Also:
Serialized Form

Field Summary
protected static boolean haltOnErrors
          Kill the virtual machine if something goes wrong.
 
Constructor Summary
Component()
           
 
Method Summary
abstract  java.lang.String toHTMLString()
          Converts information about this component into an HTML formatted String.
abstract  java.lang.String toString()
          Converts information about this component into a String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

haltOnErrors

protected static boolean haltOnErrors
Kill the virtual machine if something goes wrong.

Constructor Detail

Component

public Component()
Method Detail

toString

public abstract java.lang.String toString()
Converts information about this component into a String.

Overrides:
toString in class java.lang.Object

toHTMLString

public abstract java.lang.String toHTMLString()
Converts information about this component into an HTML formatted String.


Spreadsheet Toolkit

Project Home Page