Searched refs:annots (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanOperationInfo.java317 final Annotation[][] annots = method.getParameterAnnotations();
318 return parameters(classes, annots);
322 Annotation[][] annots) {
325 assert(classes.length == annots.length);
328 Descriptor d = Introspector.descriptorForAnnotations(annots[i]);
321 parameters(Class<?>[] classes, Annotation[][] annots) argument
H A DMBeanConstructorInfo.java215 final Annotation[][] annots = cn.getParameterAnnotations();
216 return MBeanOperationInfo.parameters(classes, annots);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DPrintAP.java237 private void printAnnotations(Collection<AnnotationMirror> annots) { argument
239 for(AnnotationMirror annot: annots) {
246 private void printAnnotationsInline(Collection<AnnotationMirror> annots) { argument
248 for(AnnotationMirror annot: annots) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java391 List<? extends AnnotationMirror> annots = e.getAnnotationMirrors();
392 for(AnnotationMirror annotationMirror : annots) {
399 List<? extends AnnotationMirror> annots = e.getAnnotationMirrors();
400 for(AnnotationMirror annotationMirror : annots) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DIntrospector.java372 final Annotation[] annots = elmt.getAnnotations();
373 return descriptorForAnnotations(annots);
376 public static Descriptor descriptorForAnnotations(Annotation[] annots) { argument
377 if (annots.length == 0)
380 for (Annotation a : annots) {
H A DMXBeanIntrospector.java216 Annotation[][] annots = method.getParameterAnnotations();
225 Introspector.descriptorForAnnotations(annots[i]));
/openjdk7/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java168 RuntimeInvisibleAnnotations_attribute annots =
170 if (annots != null) {
171 for (Annotation a: annots.annotations) {
/openjdk7/langtools/test/tools/javac/processing/
H A DT6920317.java356 public boolean process(Set<? extends TypeElement> annots, RoundEnvironment renv) { argument
358 System.err.println("Round " + round + " annots:" + annots + " rootElems:" + renv.getRootElements());

Completed in 274 milliseconds