Examples of AnnotationInfo

  • org.apache.myfaces.orchestra.annotation.AnnotationInfo
    Holds information extracted out of a single bean using its annotations.
  • org.codehaus.aspectwerkz.annotation.AnnotationInfo
    Holds the annotation proxy instance and the name of the annotation. @author Jonas Bon�r
  • org.eclipse.wst.sse.ui.internal.reconcile.validator.AnnotationInfo
    Holds info to create a TemporaryAnnotation. @since 1.0
  • org.glassfish.apf.AnnotationInfo
    Instances encapsulate all information necessary for an AnnotationHandler to process an annotation. In particular, instances of this class provide access to :

  • the Annotation instance
  • the ProcessingContext of the tool
  • the AnnotatedElement which is a reference to the annotation element (Type, Method...).

    @see java.lang.annotation.Annotation, java.lang.reflect.AnnotatedElement @author Jerome Dochez
  • org.jboss.reflect.spi.AnnotationInfo
    Annotation Info @author Bill Burke @author Adrian Brock
  • org.restlet.engine.resource.AnnotationInfo
    Descriptor for method annotations. @author Jerome Louvel

  • Examples of org.codehaus.aspectwerkz.annotation.AnnotationInfo

            List annotations = fieldInfo.getAnnotations();

            for (Iterator it = annotations.iterator(); it.hasNext();) {

                AnnotationInfo annotationInfo = (AnnotationInfo)it.next();

                if (annotationInfo.getName().equals(annotationName)) {

                    return annotationInfo.getAnnotation();

                }

            }
    View Full Code Here

    Examples of org.codehaus.aspectwerkz.annotation.AnnotationInfo

            List annotations = new ArrayList();

            for (Iterator it = classInfo.getAnnotations().iterator(); it.hasNext();) {

                AnnotationInfo annotationInfo = (AnnotationInfo)it.next();

                if (annotationInfo.getName().equals(annotationName)) {

                    annotations.add(annotationInfo.getAnnotation());

                }

            }
    View Full Code Here

    Examples of org.codehaus.aspectwerkz.annotation.AnnotationInfo

            List annotations = new ArrayList();

            for (Iterator it = methodInfo.getAnnotations().iterator(); it.hasNext();) {

                AnnotationInfo annotationInfo = (AnnotationInfo)it.next();

                if (annotationInfo.getName().equals(annotationName)) {

                    annotations.add(annotationInfo.getAnnotation());

                }

            }
    View Full Code Here

    Examples of org.codehaus.aspectwerkz.annotation.AnnotationInfo

            List annotations = new ArrayList();

            for (Iterator it = constructorInfo.getAnnotations().iterator(); it.hasNext();) {

                AnnotationInfo annotationInfo = (AnnotationInfo)it.next();

                if (annotationInfo.getName().equals(annotationName)) {

                    annotations.add(annotationInfo.getAnnotation());

                }

            }
    View Full Code Here

    Examples of org.codehaus.aspectwerkz.annotation.AnnotationInfo

            List annotations = new ArrayList();

            for (Iterator it = fieldInfo.getAnnotations().iterator(); it.hasNext();) {

                AnnotationInfo annotationInfo = (AnnotationInfo)it.next();

                if (annotationInfo.getName().equals(annotationName)) {

                    annotations.add(annotationInfo.getAnnotation());

                }

            }
    View Full Code Here

    Examples of org.codehaus.aspectwerkz.annotation.AnnotationInfo

                            annotations.add(CustomAttributeHelper.extractCustomAnnotation(annotation));

                        } else {

                            AnnotationInfo annotationInfo = AsmClassInfo.getAnnotationInfo(

                                    annotation,

                                    loader

                            );

                            annotations.add(annotationInfo);

                        }

                    }

                } else if (current instanceof RuntimeVisibleAnnotations) {

                    for (Iterator it = ((RuntimeVisibleAnnotations) current).annotations.iterator(); it.hasNext();) {

                        Annotation annotation = (Annotation) it.next();

                        AnnotationInfo annotationInfo = AsmClassInfo.getAnnotationInfo(

                                annotation,

                                loader
    View Full Code Here

    Examples of org.codehaus.aspectwerkz.annotation.AnnotationInfo

            List annotations = (List) data;

            for (Iterator it = annotations.iterator(); it.hasNext();) {

                AnnotationInfo annotation = (AnnotationInfo) it.next();

                if (annotation.getName().equals(node.getName())) {

                    return Boolean.TRUE;

                }
    View Full Code Here

    Examples of org.codehaus.aspectwerkz.annotation.AnnotationInfo

        }

        public Object visit(ASTAttribute node, Object data) {
            List annotations = (List) data;
            for (Iterator it = annotations.iterator(); it.hasNext();) {
                AnnotationInfo annotation = (AnnotationInfo) it.next();
                if (annotation.getName().equals(node.getName())) {
                    return Boolean.TRUE;
                }
            }
            return Boolean.FALSE;
        }
    View Full Code Here

    Examples of org.codehaus.aspectwerkz.annotation.AnnotationInfo

        public Object visit(ASTAttribute node, Object data) {
            // called for class level annotation matching f.e. in a within context
            List annotations = (List) data;
            for (Iterator it = annotations.iterator(); it.hasNext();) {
                AnnotationInfo annotation = (AnnotationInfo) it.next();
                if (annotation.getName().equals(node.getName())) {
                    return Boolean.TRUE;
                }
            }
            return Boolean.FALSE;
        }
    View Full Code Here

    Examples of org.eclipse.wst.sse.ui.internal.reconcile.validator.AnnotationInfo

                    processor.setAdditionalFixInfo(objArray);
                  }
                 
                }
                message.setAttribute(QUICKASSISTPROCESSOR, processor);
                AnnotationInfo info = new AnnotationInfo(message);
                ((IncrementalReporter) reporter).addAnnotationInfo(this, info);
              }
              else  {
                String selectionStrategy = (String) message.getAttribute(SQUIGGLE_SELECTION_STRATEGY_ATTRIBUTE);
                String nameOrValue = (String) message.getAttribute(SQUIGGLE_NAME_OR_VALUE_ATTRIBUTE);
    View Full Code Here
    TOP
    Copyright © 2018 www.massapi.com. All rights reserved.
    All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.