01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.webwork.views.jasperreports;
06:
07: /**
08: * <code>JasperReportConstants</code>
09: *
10: * @author <a href="mailto:hermanns@aixcept.de">Rainer Hermanns</a>
11: * @version $Id: JasperReportConstants.java 2824 2007-02-03 05:24:09Z tschneider22 $
12: */
13: public interface JasperReportConstants {
14:
15: /**
16: * PDF format constant
17: */
18: public static final String FORMAT_PDF = "PDF";
19:
20: /**
21: * XML format constant
22: */
23: public static final String FORMAT_XML = "XML";
24:
25: /**
26: * HTML format constant
27: */
28: public static final String FORMAT_HTML = "HTML";
29:
30: /**
31: * XLS format constant
32: */
33: public static final String FORMAT_XLS = "XLS";
34:
35: /**
36: * CSV format constant
37: */
38: public static final String FORMAT_CSV = "CSV";
39:
40: /**
41: * RTF format constant
42: */
43: public static final String FORMAT_RTF = "RTF";
44: }
|