This seemed to get rid of the error (using a list (no I dont know why))...
still cant get the label to work.
Any ideas?
| @Transient
| public List<String> getAdvertTypes() {
| List<String> advertTypesAsStringList = new ArrayList<String>();
| AdvertType[] advertTypesAsStringArray = AdvertType.values();
| for (AdvertType type : advertTypesAsStringArray) {
| advertTypesAsStringList.add(type.toString());
| }
| return advertTypesAsStringList;
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037250#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...