01: /*
02: * TemplateStyle.java
03: *
04: * Created on Aug 21, 2007, 4:05:48 PM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: /*
11: * Copyright (C) 2006 JasperSoft http://www.jaspersoft.com
12: *
13: * This program is free software; you can redistribute it and/or modify
14: * it under the terms of the GNU General Public License as published by
15: * the Free Software Foundation; either version 2 of the License, or
16: * (at your option) any later version.
17: *
18: * This program is distributed WITHOUT ANY WARRANTY; and without the
19: * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20: * See the GNU General Public License for more details.
21: *
22: * You should have received a copy of the GNU General Public License
23: * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
24: * or write to:
25: *
26: * Free Software Foundation, Inc.,
27: * 59 Temple Place - Suite 330,
28: * Boston, MA USA 02111-1307
29: */
30:
31: package it.businesslogic.ireport;
32:
33: /**
34: *
35: * @author gtoffoli
36: */
37: public class TemplateStyle extends Style {
38:
39: private JasperTemplate jasperTemplate = null;
40:
41: public JasperTemplate getJasperTemplate() {
42: return jasperTemplate;
43: }
44:
45: public void setJasperTemplate(JasperTemplate jasperTemplate) {
46: this .jasperTemplate = jasperTemplate;
47: }
48:
49: public TemplateStyle() {
50: super ();
51: }
52:
53: public TemplateStyle(Style s1) {
54: super(s1);
55: }
56:
57: }
|