blob: 29bd54a9315b4a6998f679285810d8b6d22f02ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.sun.tools.javac.code;
import java.util.Map;
import javax.lang.model.element.AnnotationMirror;
import javax.lang.model.element.AnnotationValue;
import javax.lang.model.element.ExecutableElement;
import javax.lang.model.type.DeclaredType;
public abstract class Attribute {
public static class Compound extends Attribute implements AnnotationMirror {
public DeclaredType getAnnotationType() { return null; }
public Map<? extends ExecutableElement, ? extends AnnotationValue> getElementValues() { return null; }
}
}
|