01: package vicazh.hyperpool.stream;
02:
03: /**
04: * The report model
05: *
06: * @author Victor Zhigunov
07: * @version 0.3.12
08: */
09: public class IReportModel {
10:
11: public int count;
12:
13: public IReportModel(int count) {
14: this .count = count;
15: }
16:
17: public Object get(int column, String value) {
18: return value;
19: }
20:
21: }
|