001: /*
002: * Copyright (C) 2005 - 2008 JasperSoft Corporation. All rights reserved.
003: * http://www.jaspersoft.com.
004: *
005: * Unless you have purchased a commercial license agreement from JasperSoft,
006: * the following license terms apply:
007: *
008: * This program is free software; you can redistribute it and/or modify
009: * it under the terms of the GNU General Public License version 2 as published by
010: * the Free Software Foundation.
011: *
012: * This program is distributed WITHOUT ANY WARRANTY; and without the
013: * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
014: * See the GNU General Public License for more details.
015: *
016: * You should have received a copy of the GNU General Public License
017: * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
018: * or write to:
019: *
020: * Free Software Foundation, Inc.,
021: * 59 Temple Place - Suite 330,
022: * Boston, MA USA 02111-1307
023: *
024: *
025: *
026: *
027: * JRIreportDefaultScriptlet.java
028: *
029: */
030:
031: package it.businesslogic.ireport;
032:
033: import net.sf.jasperreports.engine.*;
034:
035: public class JRIreportDefaultScriptlet extends JRAbstractScriptlet {
036:
037: /** Creates a new instance of JRIreportDefaultScriptlet */
038: public JRIreportDefaultScriptlet() {
039: }
040:
041: /** Begin EVENT_BEFORE_REPORT_INIT Please don't touch or move this comment*/
042: public void beforeReportInit() throws JRScriptletException {
043: }
044:
045: /** End EVENT_BEFORE_REPORT_INIT Please don't touch or move this comment*/
046:
047: /** Begin EVENT_AFTER_REPORT_INIT Please don't touch or move this comment*/
048: public void afterReportInit() throws JRScriptletException {
049: }
050:
051: /** End EVENT_AFTER_REPORT_INIT Please don't touch or move this comment*/
052:
053: /** Begin EVENT_BEFORE_PAGE_INIT Please don't touch or move this comment*/
054: public void beforePageInit() throws JRScriptletException {
055: }
056:
057: /** End EVENT_BEFORE_PAGE_INIT Please don't touch or move this comment*/
058:
059: /** Begin EVENT_AFTER_PAGE_INIT Please don't touch or move this comment*/
060: public void afterPageInit() throws JRScriptletException {
061: }
062:
063: /** End EVENT_AFTER_PAGE_INIT Please don't touch or move this comment*/
064:
065: /** Begin EVENT_BEFORE_COLUMN_INIT Please don't touch or move this comment*/
066: public void beforeColumnInit() throws JRScriptletException {
067: }
068:
069: /** End EVENT_BEFORE_COLUMN_INIT Please don't touch or move this comment*/
070:
071: /** Begin EVENT_AFTER_COLUMN_INIT Please don't touch or move this comment*/
072: public void afterColumnInit() throws JRScriptletException {
073: }
074:
075: /** End EVENT_AFTER_COLUMN_INIT Please don't touch or move this comment*/
076:
077: /** Begin EVENT_BEFORE_GROUP_INIT Please don't touch or move this comment*/
078: public void beforeGroupInit(String groupName)
079: throws JRScriptletException {
080: }
081:
082: /** End EVENT_BEFORE_GROUP_INIT Please don't touch or move this comment*/
083:
084: /** Begin EVENT_AFTER_GROUP_INIT Please don't touch or move this comment*/
085: public void afterGroupInit(String groupName)
086: throws JRScriptletException {
087: }
088:
089: /** End EVENT_AFTER_GROUP_INIT Please don't touch or move this comment*/
090:
091: /** Begin EVENT_BEFORE_DETAIL_EVAL Please don't touch or move this comment*/
092: public void beforeDetailEval() throws JRScriptletException {
093: }
094:
095: /** end EVENT_BEFORE_DETAIL_EVAL Please don't touch or move this comment*/
096:
097: /** Begin EVENT_AFTER_DETAIL_EVAL Please don't touch or move this comment*/
098: public void afterDetailEval() throws JRScriptletException {
099: }
100: /** End EVENT_AFTER_DETAIL_EVAL Please don't touch or move this comment*/
101:
102: }
|