01: /* ============================================================================
02: * GNU Lesser General Public License
03: * ============================================================================
04: *
05: * Copyright (C) 2001-2007 JasperSoft Corporation http://www.jaspersoft.com
06: *
07: * This class is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU Lesser General Public
09: * License as published by the Free Software Foundation; either
10: * version 2.1 of the License, or (at your option) any later version.
11: *
12: * This class is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this class; if not, write to the Free Software
19: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
20: *
21: * JasperSoft Corporation
22: * 303 Second Street, Suite 450 North
23: * San Francisco, CA 94107
24: * http://www.jaspersoft.com
25: *
26: *
27: *
28: * JRTxtExporterParameter.java
29: *
30: * Created on 16 aprile 2004, 10.28
31: *
32: */
33:
34: package it.businesslogic.ireport.export;
35:
36: import net.sf.jasperreports.engine.JRExporterParameter;
37:
38: /**
39: *
40: * @author Giulio Toffoli
41: */
42: public class JRTxtExporterParameter extends JRExporterParameter {
43: /**
44: *
45: */
46: protected JRTxtExporterParameter(String name) {
47: super (name);
48:
49: }
50:
51: public static final JRTxtExporterParameter PAGE_ROWS = new JRTxtExporterParameter(
52: "Rows per page");
53: public static final JRTxtExporterParameter PAGE_COLUMNS = new JRTxtExporterParameter(
54: "Columns per page");
55: public static final JRTxtExporterParameter ADD_FORM_FEED = new JRTxtExporterParameter(
56: "Add FORM FEED");
57: }
|