comparison graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/FrameTest.java @ 7678:b8c7197e57c8

Fixed typo in Javadoc of FrameTest.java
author Christian Wirth <christian.wirth@oracle.com>
date Mon, 04 Feb 2013 16:29:07 +0100
parents 5e3d1a68664e
children f07cafa29db1
comparison
equal deleted inserted replaced
7677:20cc221ed5ca 7678:b8c7197e57c8
39 * The setter and getter methods in the {@link Frame} class can be used to access the current value 39 * The setter and getter methods in the {@link Frame} class can be used to access the current value
40 * of a particular frame slot. 40 * of a particular frame slot.
41 * </p> 41 * </p>
42 * 42 *
43 * <p> 43 * <p>
44 * There are five primitive types for slots available: {@link java.lang.Boolean}, @{link 44 * There are five primitive types for slots available: {@link java.lang.Boolean},
45 * java.lang.Integer}, {@link java.lang.Long}, {@link java.lang.Float}, and {@link java.lang.Double} 45 * {@link java.lang.Integer}, {@link java.lang.Long}, {@link java.lang.Float}, and
46 * . It is encouraged to use those types whenever possible. Dynamically typed languages can 46 * {@link java.lang.Double} . It is encouraged to use those types whenever possible. Dynamically
47 * speculate on the type of a value fitting into a primitive (see 47 * typed languages can speculate on the type of a value fitting into a primitive (see
48 * {@link FrameSlotTypeSpecializationTest}). When a frame slot is of one of those particular 48 * {@link FrameSlotTypeSpecializationTest}). When a frame slot is of one of those particular
49 * primitive types, its value may only be accessed with the repectively typed getter method ( 49 * primitive types, its value may only be accessed with the respectively typed getter method (
50 * {@link Frame#getBoolean}, {@link Frame#getInt}, {@link Frame#getLong}, {@link Frame#getFloat}, or 50 * {@link Frame#getBoolean}, {@link Frame#getInt}, {@link Frame#getLong}, {@link Frame#getFloat}, or
51 * {@link Frame#getDouble}) or setter method ({@link Frame#setBoolean}, {@link Frame#setInt}, 51 * {@link Frame#getDouble}) or setter method ({@link Frame#setBoolean}, {@link Frame#setInt},
52 * {@link Frame#setLong}, {@link Frame#setFloat}, or {@link Frame#setDouble}) in the {@link Frame} 52 * {@link Frame#setLong}, {@link Frame#setFloat}, or {@link Frame#setDouble}) in the {@link Frame}
53 * class. 53 * class.
54 * </p> 54 * </p>