Generated by
JDiff

Class java.lang.reflect.Field

Changed Methods
Object get(Object) Changed from native to non-native. Returns the value of the field represented by this Field on the specified object.
boolean getBoolean(Object) Changed from native to non-native. Gets the value of a static or instance boolean field.
byte getByte(Object) Changed from native to non-native. Gets the value of a static or instance byte field.
char getChar(Object) Changed from native to non-native. Gets the value of a static or instance field of type char or of another primitive type convertible to type char via a widening conversion.
double getDouble(Object) Changed from native to non-native. Gets the value of a static or instance field of type double or of another primitive type convertible to type double via a widening conversion.
float getFloat(Object) Changed from native to non-native. Gets the value of a static or instance field of type float or of another primitive type convertible to type float via a widening conversion.
int getInt(Object) Changed from native to non-native. Gets the value of a static or instance field of type int or of another primitive type convertible to type int via a widening conversion.
long getLong(Object) Changed from native to non-native. Gets the value of a static or instance field of type long or of another primitive type convertible to type long via a widening conversion.
short getShort(Object) Changed from native to non-native. Gets the value of a static or instance field of type short or of another primitive type convertible to type short via a widening conversion.
void set(Object, Object) Changed from native to non-native. Sets the field represented by this Field object on the specified object argument to the specified new value.
void setBoolean(Object, boolean) Changed from native to non-native. Sets the value of a field as a boolean on the specified object.
void setByte(Object, byte) Changed from native to non-native. Sets the value of a field as a byte on the specified object.
void setChar(Object, char) Changed from native to non-native. Sets the value of a field as a char on the specified object.
void setDouble(Object, double) Changed from native to non-native. Sets the value of a field as a double on the specified object.
void setFloat(Object, float) Changed from native to non-native. Sets the value of a field as a float on the specified object.
void setInt(Object, int) Changed from native to non-native. Sets the value of a field as an int on the specified object.
void setLong(Object, long) Changed from native to non-native. Sets the value of a field as a long on the specified object.
void setShort(Object, short) Changed from native to non-native. Sets the value of a field as a short on the specified object.