comparison graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/ResolvedJavaType.java @ 7057:c37022832f1a

rename: findFieldWithOffset -> findInstanceFieldWithOffset
author Doug Simon <doug.simon@oracle.com>
date Tue, 27 Nov 2012 20:34:15 +0100
parents 6cbaae52bab9
children e4d9f153934f
comparison
equal deleted inserted replaced
7056:2841e28b5f41 7057:c37022832f1a
242 * Returns the {@link java.lang.Class} object representing this type. 242 * Returns the {@link java.lang.Class} object representing this type.
243 */ 243 */
244 Class< ? > toJava(); 244 Class< ? > toJava();
245 245
246 /** 246 /**
247 * Returns the instance field of this class (or one of its super classes) at the given offset, or {@code null} if there is no such field. 247 * Returns the instance field of this class (or one of its super classes) at the given
248 * offset, or {@code null} if there is no such field.
248 * 249 *
249 * @param offset the offset of the field to look for 250 * @param offset the offset of the field to look for
250 * @return the field with the given offset, or {@code null} if there is no such field. 251 * @return the field with the given offset, or {@code null} if there is no such field.
251 */ 252 */
252 ResolvedJavaField findFieldWithOffset(long offset); 253 ResolvedJavaField findInstanceFieldWithOffset(long offset);
253 } 254 }