159160161162163164165166167
Class valueType = _resources.getBoundType("value"); if (valueType == null) return null; if (Enum.class.isAssignableFrom(valueType)) return new EnumSelectModel(valueType, _resources.getContainerMessages()); return null; }
255256257258259260261262
/** Provide a select mode for an enum type. */ @SuppressWarnings("unchecked") public SelectModel getSelectModelForProperty() { return new EnumSelectModel(_propertyEditModel.getPropertyType(), _resources .getContainerMessages()); }
89909192939495
* Provide a select mode for an enum type. */ @SuppressWarnings("unchecked") public SelectModel getSelectModelForProperty() { return new EnumSelectModel(_context.getPropertyType(), _context.getContainerMessages()); }
153154155156157158159160161
949596979899100
/** Provide a select mode for an enum type. */ @SuppressWarnings("unchecked") public SelectModel getSelectModelForProperty() { return new EnumSelectModel(_context.getPropertyType(), _context.getContainerMessages()); }
183184185186187188189190191
121122123124125126127
157158159160161162163164165
82838485868788
172173174175176177178179180