toolbox.pdf.meta
Class Column

Package class diagram package Column
java.lang.Object
  extended by toolbox.pdf.meta.Column

public class Column
extends java.lang.Object

Class for describing a single column within a table.


Field Summary
 java.lang.String FORMAT
          Output format for this column.
 java.lang.String HEADING
          Heading of this column in the table header.
 boolean ROLLUP
          Indicates whether this column should be totaled.
 java.lang.String SRC
          Name of the source attribute in content source.
 java.lang.String WIDTH
          Width of this column as a percentage.
 
Constructor Summary
Column(java.lang.String srcAttr, java.lang.String format, boolean rollup, java.lang.String heading, java.lang.String width)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SRC

public java.lang.String SRC
Name of the source attribute in content source.


FORMAT

public java.lang.String FORMAT
Output format for this column.


ROLLUP

public boolean ROLLUP
Indicates whether this column should be totaled.


HEADING

public java.lang.String HEADING
Heading of this column in the table header.


WIDTH

public java.lang.String WIDTH
Width of this column as a percentage.

Constructor Detail

Column

public Column(java.lang.String srcAttr,
              java.lang.String format,
              boolean rollup,
              java.lang.String heading,
              java.lang.String width)
Parameters:
srcAttr - Name of the attribute that will be contained in the content source for this document.
format - The format for the specified column.
rollup - This column must be totaled up.
heading - The heading for this column to be used in the table header
width - The column width as a percentage.