KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > wcf > format > BasicTypes


1 /*
2  * ====================================================================
3  * This software is subject to the terms of the Common Public License
4  * Agreement, available at the following URL:
5  * http://www.opensource.org/licenses/cpl.html .
6  * Copyright (C) 2003-2004 TONBELLER AG.
7  * All Rights Reserved.
8  * You must accept the terms of that agreement to use this software.
9  * ====================================================================
10  *
11  *
12  */

13 package com.tonbeller.wcf.format;
14
15 /**
16  * basic types that a formatter can handle
17  * @author av
18  */

19 public interface BasicTypes {
20   public static final String JavaDoc STRING_TYPE = "string";
21   public static final String JavaDoc INT_TYPE = "int";
22   public static final String JavaDoc DATE_TYPE = "date";
23   public static final String JavaDoc BOOLEAN_TYPE = "boolean";
24   public static final String JavaDoc DOUBLE_TYPE = "double";
25
26   /** positive integer > 0 */
27   public static final String JavaDoc POSINT_TYPE = "posint";
28   /** required string */
29   public static final String JavaDoc REQSTR_TYPE = "reqstr";
30   /** email */
31   public static final String JavaDoc EMAIL_TYPE = "email";
32
33 }
34
Popular Tags