Make FieldAttributes public so it can be used by public clients.

This commit is contained in:
Joel Leitch 2009-10-09 03:11:16 +00:00
parent 282ef30280
commit 81e6ae25f1

View File

@ -30,12 +30,13 @@ import java.lang.reflect.Type;
*
* @since 1.4
*/
final class FieldAttributes {
public final class FieldAttributes {
private final Field field;
/**
* Constructs a Field Attributes object
* @param f
* Constructs a Field Attributes object from the {@code f}.
*
* @param f the field to pull attributes from
*/
FieldAttributes(Field f) {
Preconditions.checkNotNull(f);