comparison graal/com.oracle.truffle.api.codegen/src/com/oracle/truffle/api/codegen/SpecializationGuard.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 6343a09b2ec1
children
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
30 @Retention(RetentionPolicy.CLASS) 30 @Retention(RetentionPolicy.CLASS)
31 @Target({ElementType.METHOD}) 31 @Target({ElementType.METHOD})
32 public @interface SpecializationGuard { 32 public @interface SpecializationGuard {
33 33
34 /** 34 /**
35 * Specifies the name of the guard method annotated by {@link GuardCheck} specified as method in the 35 * Specifies the name of the guard method annotated by {@link GuardCheck} specified as method in
36 * {@link TypeSystem} class. 36 * the {@link TypeSystem} class.
37 */ 37 */
38 String methodName(); 38 String methodName();
39 39
40 /** 40 /**
41 * Determines if a guard check is invoked on specialization. Defaults to true. 41 * Determines if a guard check is invoked on specialization. Defaults to true.