예제 #1
0
 @SuppressWarnings({"unchecked"})
 @Override
 public void setVal(Object obj, Object value) throws PropertyValueException {
   property.setValue((Obj) obj, (Short) value);
 }
예제 #2
0
 @SuppressWarnings({"unchecked"})
 @Override
 public boolean isStored(Object obj) {
   return property.isStored((Obj) obj);
 }
예제 #3
0
 @SuppressWarnings({"unchecked"})
 @Override
 public Object getVal(Object obj) throws PropertyValueException {
   return property.getValue((Obj) obj);
 }