Package io.aether.utils
Interface CTypeI.FieldAccessor<T2>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T2get(java.lang.Object owner)Gets the field value from the specified owner object.voidset(java.lang.Object owner, T2 value)Sets the field value on the specified owner object.
-
-
-
Method Detail
-
get
T2 get(java.lang.Object owner)
Gets the field value from the specified owner object.- Parameters:
owner- the owner object- Returns:
- the field value
-
set
void set(java.lang.Object owner, T2 value)Sets the field value on the specified owner object.- Parameters:
owner- the owner objectvalue- the new field value
-
-