org.displaytag.test
public class: KnownTypes [javadoc |
source]
java.lang.Object
org.displaytag.test.KnownTypes
Simple test data provider.
- author:
Fabrizio - Giustina
- version:
$ - Revision: 907 $ ($Author: fgiust $)
| Field Summary |
|---|
| public static final String | TIME_PROPERTY | constant for the "time" property name. |
| public static final Date | TIME_VALUE | constant for the "time" property value. For the curious, evals to Mon Mar 01 18:00:00 CST 3875 (if you are in
Chicago). |
| public static final String | LONG_PROPERTY | constant for the "long" property name. |
| public static final Long | LONG_VALUE | constant for the "long" property value. |
| Method from org.displaytag.test.KnownTypes Detail: |
public Long getLong() {
return LONG_VALUE;
}
getter for the LONG_PROPERTY property. |
public Long getNullValue() {
return null;
}
getter for a null property. |
public Date getTime() {
return TIME_VALUE;
}
getter for the TIME_PROPERTY property. |