[webbeans-commits] Webbeans SVN: r2117 - ri/trunk/impl/src/main/java/org/jboss/webbeans/introspector.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Thu Mar 19 19:05:24 EDT 2009


Author: pete.muir at jboss.org
Date: 2009-03-19 19:05:24 -0400 (Thu, 19 Mar 2009)
New Revision: 2117

Modified:
   ri/trunk/impl/src/main/java/org/jboss/webbeans/introspector/WrappedAnnotatedClass.java
Log:
minor

Modified: ri/trunk/impl/src/main/java/org/jboss/webbeans/introspector/WrappedAnnotatedClass.java
===================================================================
--- ri/trunk/impl/src/main/java/org/jboss/webbeans/introspector/WrappedAnnotatedClass.java	2009-03-19 22:54:09 UTC (rev 2116)
+++ ri/trunk/impl/src/main/java/org/jboss/webbeans/introspector/WrappedAnnotatedClass.java	2009-03-19 23:05:24 UTC (rev 2117)
@@ -43,59 +43,38 @@
       return annotationStore;
    }
    
-   /**
-    * @see org.jboss.webbeans.introspector.AnnotatedItem
-    */
    public <A extends Annotation> A getAnnotation(Class<A> annotationType)
    {
       return getAnnotationStore().getAnnotation(annotationType);
    }
 
-   /**
-    * @see org.jboss.webbeans.introspector.AnnotatedItem
-    */
    public Set<Annotation> getAnnotationsAsSet()
    {
       return getAnnotationStore().getAnnotations();
    }
 
-   /**
-    * @see org.jboss.webbeans.introspector.AnnotatedItem
-    */
    public Set<Annotation> getMetaAnnotations(Class<? extends Annotation> metaAnnotationType)
    {
       return getAnnotationStore().getMetaAnnotations(metaAnnotationType);
    }
 
-   /**
-    * @see org.jboss.webbeans.introspector.AnnotatedItem
-    */
    public Annotation[] getMetaAnnotationsAsArray(Class<? extends Annotation> metaAnnotationType)
    {
       return getAnnotationStore().getMetaAnnotationsAsArray(metaAnnotationType);
    }
 
-   /**
-    * @see org.jboss.webbeans.introspector.AnnotatedItem
-    */
    @Deprecated
    public Set<Annotation> getBindings()
    {
       return getAnnotationStore().getBindings();
    }
 
-   /**
-    * @see org.jboss.webbeans.introspector.AnnotatedItem
-    */
    @Deprecated
    public Annotation[] getBindingsAsArray()
    {
       return getAnnotationStore().getBindingsAsArray();
    }
    
-   /**
-    * @see org.jboss.webbeans.introspector.AnnotatedItem
-    */
    public boolean isAnnotationPresent(Class<? extends Annotation> annotationType)
    {
       return getAnnotationStore().isAnnotationPresent(annotationType);




More information about the weld-commits mailing list