01: /*
02: * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/field/TKFieldTableOrientedData.java,v 1.7 2002/01/21 09:39:21 mischa Exp $
03: *
04: */
05: package com.teamkonzept.field;
06:
07: import com.teamkonzept.lib.*;
08:
09: /**
10: * Die klasse haelt die Daten der Klasse TKFieldTable
11: * Die Daten werden in compileData() gesetzt
12: * @author $Author: mischa $
13: * @version $Revision: 1.7 $
14: */
15: public class TKFieldTableOrientedData {
16: public TKVector contentData;
17: public TKVector rowData;
18: public TKVector colData;
19:
20: public TKFieldTableOrientedData(TKVector contentData,
21: TKVector rowData, TKVector colData) {
22: this .contentData = contentData;
23: this .rowData = rowData;
24: this .colData = colData;
25:
26: }
27:
28: public String toString() {
29: String newline = System.getProperty("line.separator");
30: return "("
31: + "contentData="
32: + (contentData == null ? "null" : contentData
33: .toString()) + "," + newline + "rowData="
34: + (rowData == null ? "null" : rowData.toString()) + ","
35: + newline + "colData="
36: + (colData == null ? "null" : colData.toString())
37: + newline + ")";
38: }
39: //{{DECLARE_CONTROLS
40: //}}
41: }//end class
|