comparison graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/ast/CodeAnnotationMirror.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 a748e4d44694
children 0e4db5ee0695
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
43 public DeclaredType getAnnotationType() { 43 public DeclaredType getAnnotationType() {
44 return annotationType; 44 return annotationType;
45 } 45 }
46 46
47 @Override 47 @Override
48 public Map< ? extends ExecutableElement, ? extends AnnotationValue> getElementValues() { 48 public Map<? extends ExecutableElement, ? extends AnnotationValue> getElementValues() {
49 return values; 49 return values;
50 } 50 }
51 51
52 @Override 52 @Override
53 public AnnotationValue getElementValue(ExecutableElement method) { 53 public AnnotationValue getElementValue(ExecutableElement method) {
75 copy.setElementValue(key, mirror.getElementValues().get(key)); 75 copy.setElementValue(key, mirror.getElementValues().get(key));
76 } 76 }
77 return copy; 77 return copy;
78 } 78 }
79 79
80
81 } 80 }