Home | History | Annotate | Download | only in header

Lines Matching refs:Field

34 import java.lang.reflect.Field;
89 Field[] fields = myclass.getDeclaredFields();
92 Field[] hisfields = hisclass.getDeclaredFields();
94 Field f = fields[i];
95 Field g = hisfields[i];
143 System.out.println("accessed field " + fieldName);
167 * Null in any field matches anything. Some book-keeping fields
182 Field[] fields = myclass.getDeclaredFields();
183 Field[] hisfields = hisclass.getDeclaredFields();
185 Field f = fields[i];
186 Field g = hisfields[i];
295 Field[] fields = myclass.getDeclaredFields();
297 Field f = fields[i];
377 continue; // we are accessing a private field...