comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/NodeInfo.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 7421f2894cfc
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
31 @Target(ElementType.TYPE) 31 @Target(ElementType.TYPE)
32 public @interface NodeInfo { 32 public @interface NodeInfo {
33 33
34 /** 34 /**
35 * Short name representing the node that can be used for debugging. 35 * Short name representing the node that can be used for debugging.
36 *
36 * @return the short name 37 * @return the short name
37 */ 38 */
38 String shortName() default ""; 39 String shortName() default "";
39 } 40 }