1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package net.sf.statcvs.reportmodel;
24
25 import net.sf.statcvs.renderer.TableCellRenderer;
26
27 /**
28 * A generic text column without any special behaviour. It can be filled
29 * with String values. The total for the column is empty.
30 *
31 * @author Richard Cyganiak <rcyg@gmx.de>
32 * @version $Id: SimpleTextColumn.java,v 1.3 2008/04/02 11:22:14 benoitx Exp $
33 */
34 public class SimpleTextColumn extends GenericColumn {
35
36 /**
37 * Creates a new <tt>SimpleTextColumn</tt> with the given head
38 * @param title the head of the column
39 */
40 public SimpleTextColumn(final String title) {
41 super(title);
42 }
43
44 /**
45 * @see net.sf.statcvs.reportmodel.Column#renderCell
46 */
47 public void renderCell(final int rowIndex, final TableCellRenderer renderer) {
48 renderer.renderCell((String) getValue(rowIndex));
49 }
50 }