KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > jasperreports > crosstabs > base > JRBaseCellContents


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.base;
29
30 import java.awt.Color JavaDoc;
31 import java.io.Serializable JavaDoc;
32
33 import net.sf.jasperreports.crosstabs.JRCellContents;
34 import net.sf.jasperreports.engine.JRBox;
35 import net.sf.jasperreports.engine.JRConstants;
36 import net.sf.jasperreports.engine.JRDefaultStyleProvider;
37 import net.sf.jasperreports.engine.JRStyle;
38 import net.sf.jasperreports.engine.base.JRBaseElementGroup;
39 import net.sf.jasperreports.engine.base.JRBaseObjectFactory;
40
41 /**
42  * Base read-only implementation of {@link net.sf.jasperreports.crosstabs.JRCellContents JRCellContents}.
43  *
44  * @author Lucian Chirita (lucianc@users.sourceforge.net)
45  * @version $Id: JRBaseCellContents.java 1229 2006-04-19 13:27:35 +0300 (Wed, 19 Apr 2006) teodord $
46  */

47 public class JRBaseCellContents extends JRBaseElementGroup implements JRCellContents, Serializable JavaDoc
48 {
49     private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID;
50
51     protected JRDefaultStyleProvider defaultStyleProvider;
52     protected JRStyle style;
53     
54     protected Byte JavaDoc mode;
55     protected Color JavaDoc backcolor;
56     protected JRBox box;
57     protected int width;
58     protected int height;
59
60     public JRBaseCellContents(JRCellContents cell, JRBaseObjectFactory factory)
61     {
62         super(cell, factory);
63         
64         this.defaultStyleProvider = factory.getDefaultStyleProvider();
65         style = factory.getStyle(cell.getStyle());
66         mode = cell.getMode();
67         backcolor = cell.getBackcolor();
68         box = cell.getBox();
69         width = cell.getWidth();
70         height = cell.getHeight();
71     }
72
73     public Color JavaDoc getBackcolor()
74     {
75         return backcolor;
76     }
77
78     public JRBox getBox()
79     {
80         return box;
81     }
82
83     public int getWidth()
84     {
85         return width;
86     }
87
88     public int getHeight()
89     {
90         return height;
91     }
92
93     public JRDefaultStyleProvider getDefaultStyleProvider()
94     {
95         return defaultStyleProvider;
96     }
97
98     public JRStyle getStyle()
99     {
100         return style;
101     }
102
103     public Byte JavaDoc getMode()
104     {
105         return mode;
106     }
107 }
108
Popular Tags