KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > jasperreports > crosstabs > fill > JRFillCrosstabGroup


1 /*
2  * ============================================================================
3  * GNU Lesser General Public License
4  * ============================================================================
5  *
6  * JasperReports - Free Java report-generating library.
7  * Copyright (C) 2001-2006 JasperSoft Corporation http://www.jaspersoft.com
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22  *
23  * JasperSoft Corporation
24  * 303 Second Street, Suite 450 North
25  * San Francisco, CA 94107
26  * http://www.jaspersoft.com
27  */

28 package net.sf.jasperreports.crosstabs.fill;
29
30 import net.sf.jasperreports.crosstabs.JRCellContents;
31 import net.sf.jasperreports.crosstabs.JRCrosstabBucket;
32 import net.sf.jasperreports.crosstabs.JRCrosstabGroup;
33 import net.sf.jasperreports.engine.JRVariable;
34 import net.sf.jasperreports.engine.fill.JRFillCellContents;
35 import net.sf.jasperreports.engine.fill.JRFillObjectFactory;
36 import net.sf.jasperreports.engine.fill.JRFillVariable;
37
38 /**
39  * Base crosstab row/column group implementation used at fill time.
40  *
41  * @author Lucian Chirita (lucianc@users.sourceforge.net)
42  * @version $Id: JRFillCrosstabGroup.java 1229 2006-04-19 13:27:35 +0300 (Wed, 19 Apr 2006) teodord $
43  */

44 public abstract class JRFillCrosstabGroup implements JRCrosstabGroup
45 {
46     protected JRCrosstabGroup parentGroup;
47     protected JRFillCellContents header;
48     protected JRFillCellContents totalHeader;
49     protected JRFillVariable variable;
50
51     public JRFillCrosstabGroup(JRCrosstabGroup group, JRFillObjectFactory factory)
52     {
53         factory.put(group, this);
54         
55         parentGroup = group;
56         
57         header = factory.getCell(group.getHeader());
58         totalHeader = factory.getCell(group.getTotalHeader());
59         
60         variable = factory.getVariable(group.getVariable());
61     }
62
63     public String JavaDoc getName()
64     {
65         return parentGroup.getName();
66     }
67
68     public byte getTotalPosition()
69     {
70         return parentGroup.getTotalPosition();
71     }
72
73     public boolean hasTotal()
74     {
75         return parentGroup.hasTotal();
76     }
77
78     public JRCrosstabBucket getBucket()
79     {
80         return parentGroup.getBucket();
81     }
82
83     public JRCellContents getHeader()
84     {
85         return header;
86     }
87
88     public JRCellContents getTotalHeader()
89     {
90         return totalHeader;
91     }
92
93     public JRFillCellContents getFillHeader()
94     {
95         return header;
96     }
97
98     public JRFillCellContents getFillTotalHeader()
99     {
100         return totalHeader;
101     }
102     
103     public JRVariable getVariable()
104     {
105         return variable;
106     }
107     
108     public JRFillVariable getFillVariable()
109     {
110         return variable;
111     }
112
113 }
114
Popular Tags