Lines Matching refs:instance
39 private void showStrings(Target instance)
47 one = (String) field.get(instance);
50 two = (String) field.get(instance);
53 three = (String) field.get(instance);
81 Target instance = new Target();
91 boxval = (Integer) meth.invoke(instance, argList);
96 meth.invoke(instance, (Object[]) null);
101 meth.invoke(instance, (Object[]) null);
119 String strVal = (String) field.get(instance);
122 showStrings(instance);
124 field.set(instance, new String("a new string"));
125 strVal = (String) field.get(instance);
128 showStrings(instance);
131 field.set(instance, new Object());
142 four = (String) field.get(instance);
168 field.set(instance, null);
175 longVal = field.getLong(instance);
178 field.setLong(instance, 0x9988776655443322L);
179 longVal = field.getLong(instance);
188 int intVal = field.getInt(instance);
190 Integer boxedIntVal = (Integer) field.get(instance);
193 field.set(instance, new Integer(20202));
194 intVal = field.getInt(instance);
196 field.setShort(instance, (short)30303);
197 intVal = field.getInt(instance);
199 field.setInt(instance, 40404);
200 intVal = field.getInt(instance);
203 field.set(instance, new Long(123));
210 field.setLong(instance, 123);
217 field.set(instance, new String("abc"));
225 field.getShort(instance);
234 int superClassIntVal = field.getInt(instance);
243 field.getLong(instance);
265 String val = (String) field.get(instance);
271 intVal = field.getInt(instance);
274 field.setInt(instance, 99);
279 intVal = field.getInt(instance);