Home | History | Annotate | Download | only in inject

Lines Matching refs:field

22 import java.lang.reflect.Field;
66 * For each field marked with the InjectView annotation, a call to
69 * will be assigned to the field.
75 for (Field field : mActivity.getClass().getDeclaredFields()) {
76 for (Annotation annotation : field.getAnnotations()) {
79 Class<?> fieldType = field.getType();
81 field.setAccessible(true);
86 field + ", can't inject");
88 field.set(mActivity, injectedValue);
89 field.setAccessible(false);