comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/frame/MaterializedFrame.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents a4b84ba6dc2e
children 07f8d136a05e
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.truffle.api.frame; 23 package com.oracle.truffle.api.frame;
24 24
25 /** 25 /**
26 * Represents a materialized frame containing values of local variables of the guest language. It can be created using 26 * Represents a materialized frame containing values of local variables of the guest language. It
27 * the {@link VirtualFrame#materialize()} method. Instances of this type are the only frame instances that may be stored 27 * can be created using the {@link VirtualFrame#materialize()} method. Instances of this type are
28 * in fields or cast to {@link java.lang.Object}. In contrast to a {@link VirtualFrame}, a {@link MaterializedFrame} can 28 * the only frame instances that may be stored in fields or cast to {@link java.lang.Object}. In
29 * no longer be packed and it also does not provide access to the caller frame. 29 * contrast to a {@link VirtualFrame}, a {@link MaterializedFrame} can no longer be packed and it
30 * also does not provide access to the caller frame.
30 */ 31 */
31 public interface MaterializedFrame extends Frame { 32 public interface MaterializedFrame extends Frame {
32 } 33 }