comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/frame/FrameSlot.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 f07cafa29db1
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
24 24
25 /** 25 /**
26 * A slot in a frame that can store a value of a given type. 26 * A slot in a frame that can store a value of a given type.
27 */ 27 */
28 public interface FrameSlot { 28 public interface FrameSlot {
29
29 String getName(); 30 String getName();
31
30 int getIndex(); 32 int getIndex();
31 Class< ? > getType(); 33
32 void setType(Class< ? > type); 34 Class<?> getType();
35
36 void setType(Class<?> type);
37
33 void registerOneShotTypeListener(FrameSlotTypeListener listener); 38 void registerOneShotTypeListener(FrameSlotTypeListener listener);
34 } 39 }