comparison graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/typesystem/TypeData.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 b891ec348f8a
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
37 private final TypeMirror boxedType; 37 private final TypeMirror boxedType;
38 38
39 private final List<TypeCastData> typeCasts = new ArrayList<>(); 39 private final List<TypeCastData> typeCasts = new ArrayList<>();
40 private final List<TypeCheckData> typeChecks = new ArrayList<>(); 40 private final List<TypeCheckData> typeChecks = new ArrayList<>();
41 41
42 public TypeData(TypeElement templateType, AnnotationMirror annotation, 42 public TypeData(TypeElement templateType, AnnotationMirror annotation, TypeMirror primitiveType, TypeMirror boxedType) {
43 TypeMirror primitiveType, TypeMirror boxedType) {
44 super(templateType, annotation); 43 super(templateType, annotation);
45 this.primitiveType = primitiveType; 44 this.primitiveType = primitiveType;
46 this.boxedType = boxedType; 45 this.boxedType = boxedType;
47 } 46 }
48 47
89 public String toString() { 88 public String toString() {
90 return getClass().getSimpleName() + "[" + Utils.getSimpleName(primitiveType) + "]"; 89 return getClass().getSimpleName() + "[" + Utils.getSimpleName(primitiveType) + "]";
91 } 90 }
92 91
93 } 92 }
94