KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > it > businesslogic > ireport > JRIreportDefaultScriptlet


1 /*
2  * Copyright (C) 2005 - 2006 JasperSoft Corporation. All rights reserved.
3  * http://www.jaspersoft.com.
4  *
5  * Unless you have purchased a commercial license agreement from JasperSoft,
6  * the following license terms apply:
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as published by
10  * the Free Software Foundation.
11  *
12  * This program is distributed WITHOUT ANY WARRANTY; and without the
13  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  * See the GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
18  * or write to:
19  *
20  * Free Software Foundation, Inc.,
21  * 59 Temple Place - Suite 330,
22  * Boston, MA USA 02111-1307
23  *
24  *
25  *
26  *
27  * JRIreportDefaultScriptlet.java
28  *
29  */

30
31 package it.businesslogic.ireport;
32 import net.sf.jasperreports.engine.*;
33
34
35 public class JRIreportDefaultScriptlet extends JRAbstractScriptlet {
36     
37 /** Creates a new instance of JRIreportDefaultScriptlet */
38 public JRIreportDefaultScriptlet() {
39 }
40
41 /** Begin EVENT_BEFORE_REPORT_INIT Please don't touch or move this comment*/
42 public void beforeReportInit() throws JRScriptletException
43 {
44 }
45 /** End EVENT_BEFORE_REPORT_INIT Please don't touch or move this comment*/
46
47
48 /** Begin EVENT_AFTER_REPORT_INIT Please don't touch or move this comment*/
49 public void afterReportInit() throws JRScriptletException
50 {
51 }
52 /** End EVENT_AFTER_REPORT_INIT Please don't touch or move this comment*/
53
54
55 /** Begin EVENT_BEFORE_PAGE_INIT Please don't touch or move this comment*/
56 public void beforePageInit() throws JRScriptletException
57 {
58 }
59 /** End EVENT_BEFORE_PAGE_INIT Please don't touch or move this comment*/
60
61
62 /** Begin EVENT_AFTER_PAGE_INIT Please don't touch or move this comment*/
63 public void afterPageInit() throws JRScriptletException
64 {
65 }
66 /** End EVENT_AFTER_PAGE_INIT Please don't touch or move this comment*/
67
68
69 /** Begin EVENT_BEFORE_COLUMN_INIT Please don't touch or move this comment*/
70 public void beforeColumnInit() throws JRScriptletException
71 {
72 }
73 /** End EVENT_BEFORE_COLUMN_INIT Please don't touch or move this comment*/
74
75
76 /** Begin EVENT_AFTER_COLUMN_INIT Please don't touch or move this comment*/
77 public void afterColumnInit() throws JRScriptletException
78 {
79 }
80 /** End EVENT_AFTER_COLUMN_INIT Please don't touch or move this comment*/
81
82
83 /** Begin EVENT_BEFORE_GROUP_INIT Please don't touch or move this comment*/
84 public void beforeGroupInit(String JavaDoc groupName) throws JRScriptletException
85 {
86 }
87 /** End EVENT_BEFORE_GROUP_INIT Please don't touch or move this comment*/
88
89
90 /** Begin EVENT_AFTER_GROUP_INIT Please don't touch or move this comment*/
91 public void afterGroupInit(String JavaDoc groupName) throws JRScriptletException
92 {
93 }
94 /** End EVENT_AFTER_GROUP_INIT Please don't touch or move this comment*/
95
96
97
98 /** Begin EVENT_BEFORE_DETAIL_EVAL Please don't touch or move this comment*/
99 public void beforeDetailEval() throws JRScriptletException
100 {
101 }
102 /** end EVENT_BEFORE_DETAIL_EVAL Please don't touch or move this comment*/
103
104
105
106 /** Begin EVENT_AFTER_DETAIL_EVAL Please don't touch or move this comment*/
107 public void afterDetailEval() throws JRScriptletException
108 {
109 }
110 /** End EVENT_AFTER_DETAIL_EVAL Please don't touch or move this comment*/
111
112     
113 }
114
Popular Tags