java.lang.Object
cgsuite.plugin.TableOutput
- All Implemented Interfaces:
- Output
- class TableOutput
- extends java.lang.Object
- implements Output
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
numColumns
int numColumns
maxCellWidth
int maxCellWidth
format
TableFormat format
cells
Output[][] cells
TableOutput
TableOutput(Table table,
OutputContext outputContext)
getCompressedChar
private char getCompressedChar(java.lang.Object o)
toScreenImage
public java.awt.Image toScreenImage(int pixelWidth)
- Description copied from interface:
Output
- Converts this
Output to an image suitable for screen
display. The Combinatorial Game Suite user interface calls this method
to display worksheet output.
The pixelWidth parameter is the desired width of the
image, in pixels. It is not an absolute requirement. The
Output object will generate an image that fits within
pixelWidth provided that this does not otherwise
compromise the readability of the display.
- Specified by:
toScreenImage in interface Output
toPlainText
public java.lang.String toPlainText()
- Description copied from interface:
Output
- Converts this
Output to a String that is
readable as-is.
- Specified by:
toPlainText in interface Output
toLatexSource
public java.lang.String toLatexSource()
- Description copied from interface:
Output
- Converts this
Output to a LaTeX source fragment. The
resulting String can then be compiled using LaTeX.
- Specified by:
toLatexSource in interface Output