/**
  * Obtains the field value specified by this field object on the given object.
  *
  * @exception IllegalArgumentException if this field is not compiled yet.
  */
 public Object get(Object obj) throws IllegalArgumentException, IllegalAccessException {
   return substance.get(obj);
 }