6465666768697071
try { Field field = object.getClass().getDeclaredField(attributeName); field.setAccessible(true); return field.get(object); } catch (Exception e) { throw new AttributeException(e); } }
6667686970717273
try{ Field field = object.getClass().getDeclaredField(attributeName); field.setAccessible(true); return field.get(object); } catch (Exception e) { throw new AttributeException(e); } }