comparison graal/com.oracle.jvmci.meta/src/com/oracle/jvmci/meta/ConstantReflectionProvider.java @ 21643:2081f8f294fe

Fixed some javadoc
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Mon, 01 Jun 2015 11:49:57 -0700
parents 48c1ebd24120
children
comparison
equal deleted inserted replaced
21642:57912478d94d 21643:2081f8f294fe
62 */ 62 */
63 JavaConstant readConstantArrayElement(JavaConstant array, int index); 63 JavaConstant readConstantArrayElement(JavaConstant array, int index);
64 64
65 /** 65 /**
66 * Reads a value from the given array at the given offset if it is a stable array. The offset 66 * Reads a value from the given array at the given offset if it is a stable array. The offset
67 * will decoded relative to the platform addressing into an index into the array. Returns 67 * will be decoded relative to the platform addressing into an index into the array. Returns
68 * {@code null} if the constant is not a stable array, if it is a default value, if the offset 68 * {@code null} if the constant is not a stable array, if it is a default value, if the offset
69 * is out of bounds, or if the value is not available at this point. 69 * is out of bounds, or if the value is not available at this point.
70 */ 70 */
71 JavaConstant readConstantArrayElementForOffset(JavaConstant array, long offset); 71 JavaConstant readConstantArrayElementForOffset(JavaConstant array, long offset);
72 72