KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > calipso > reportgenerator > reportmanager > ReportExportFormatType


1 package com.calipso.reportgenerator.reportmanager;
2
3 /**
4  *
5  * User: jbassino
6  * Date: 23/04/2004
7  * Time: 15:54:37
8  *
9  */

10 public class ReportExportFormatType {
11
12   public static final int PDF_TYPE = 1;
13
14   public static final int XML_TYPE = 2;
15
16   public static final int HTML_TYPE = 3;
17
18   public static final int EXCEL_TYPE = 4;
19
20   public static final int COMMA_TYPE = 5;
21
22 }
23
Popular Tags