Searched refs:AnnotationValue (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DAnnotationTypeElementDoc.java43 AnnotationValue defaultValue();
H A DAnnotationValue.java35 public interface AnnotationValue { interface
45 * <li> <code>AnnotationValue[]</code>
H A DAnnotationDesc.java77 AnnotationValue value();
/openjdk7/langtools/src/share/classes/javax/lang/model/element/
H A DUnknownAnnotationValueException.java48 private transient AnnotationValue av;
62 public UnknownAnnotationValueException(AnnotationValue av, Object p) {
75 public AnnotationValue getUnknownAnnotationValue() {
H A DAnnotationMirror.java73 Map<? extends ExecutableElement, ? extends AnnotationValue> getElementValues();
H A DAnnotationValue.java40 * <li> {@code List<? extends AnnotationValue>}
49 public interface AnnotationValue { interface
H A DAnnotationValueVisitor.java43 * passed to a value's {@link AnnotationValue#accept accept} method,
78 R visit(AnnotationValue av, P p);
85 R visit(AnnotationValue av);
189 R visitArray(List<? extends AnnotationValue> vals, P p);
201 R visitUnknown(AnnotationValue av, P p);
H A DExecutableElement.java99 AnnotationValue getDefaultValue();
/openjdk7/langtools/src/share/classes/com/sun/mirror/declaration/
H A DAnnotationTypeElementDeclaration.java51 AnnotationValue getDefaultValue();
H A DAnnotationValue.java36 * javax.lang.model.element.AnnotationValue}.
44 public interface AnnotationValue { interface
54 * <li> {@code Collection<AnnotationValue>}
H A DAnnotationMirror.java86 Map<AnnotationTypeElementDeclaration, AnnotationValue> getElementValues();
/openjdk7/langtools/src/share/classes/javax/lang/model/util/
H A DAbstractAnnotationValueVisitor6.java80 * value's {@link AnnotationValue#accept accept}. The invocation
85 public final R visit(AnnotationValue av, P p) {
91 * value's {@link AnnotationValue#accept accept} method passing
97 public final R visit(AnnotationValue av) {
112 public R visitUnknown(AnnotationValue av, P p) {
/openjdk7/langtools/test/tools/javac/processing/model/
H A DTestExceptions.java43 new UnknownAnnotationValueException((AnnotationValue) null, (Object) null),
/openjdk7/langtools/test/tools/apt/Compile/
H A DWarnAPF.java60 Map<AnnotationTypeElementDeclaration,AnnotationValue> map =
64 AnnotationValue annotValue = map.get(key);
73 AnnotationValue annotValue = ated.getDefaultValue();
/openjdk7/langtools/src/share/classes/javax/annotation/processing/
H A DMessager.java100 AnnotationValue v);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DAnnotationMirrorImpl.java106 public Map<AnnotationTypeElementDeclaration, AnnotationValue>
108 Map<AnnotationTypeElementDeclaration, AnnotationValue> res =
110 AnnotationValue>(); // whew!
H A DAnnotationValueImpl.java41 * Implementation of AnnotationValue
44 public class AnnotationValueImpl implements AnnotationValue {
109 ArrayList<AnnotationValue> vals =
110 new ArrayList<AnnotationValue>(a.values.length);
H A DAnnotationTypeElementDeclarationImpl.java56 public AnnotationValue getDefaultValue() {
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DAnnoVal.java28 * @summary Tests AnnotationValue methods.
80 for (Map.Entry<AnnotationTypeElementDeclaration, AnnotationValue> e :
110 for (Map.Entry<AnnotationTypeElementDeclaration,AnnotationValue> e :
143 for (Map.Entry<AnnotationTypeElementDeclaration,AnnotationValue> e :
H A DAnnoTypeElemDecl.java154 AnnotationValue getDefaultValue1() {
159 AnnotationValue getDefaultValue2() {
/openjdk7/langtools/test/tools/javac/processing/messager/6362067/
H A DT6362067.java25 for (AnnotationValue v: a.getElementValues().values()) {
/openjdk7/langtools/test/tools/apt/Scanners/
H A DScanner.java63 Map<AnnotationTypeElementDeclaration,AnnotationValue> elementValues = am.getElementValues();
69 AnnotationValue av =
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTrees.java31 import javax.lang.model.element.AnnotationValue;
118 * Gets the Tree node for an AnnotationValue for an AnnotationMirror on a given Element.
121 public abstract Tree getTree(Element e, AnnotationMirror a, AnnotationValue v);
141 * Gets the TreePath node for an AnnotationValue for an AnnotationMirror on a given Element.
144 public abstract TreePath getPath(Element e, AnnotationMirror a, AnnotationValue v);
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAnnotationValueImpl.java43 public class AnnotationValueImpl implements AnnotationValue {
62 * <li> <code>AnnotationValue[]</code>
98 AnnotationValue vals[] = new AnnotationValue[a.values.length];
H A DAnnotationTypeElementDocImpl.java86 public AnnotationValue defaultValue() {

Completed in 104 milliseconds

12