Fix for issue 17, Fix JSON support for TimeZone

This commit is contained in:
Robin Bygrave
2013-04-24 00:08:25 +12:00
parent 5761816fc9
commit 85f3a8987d
9 changed files with 345 additions and 122 deletions
@@ -0,0 +1,17 @@
package com.avaje.tests.model.basic;
public enum SomeEnum {
ALPHA("Some nice Alpha"),
BETA("Some nice Beta");
String description;
SomeEnum(String description) {
this.description = description;
}
public String toString() {
return description;
}
}