[jboss-cvs] microkernel/src/main/org/jboss/beans/metadata/spi ...

Kabir Khan kkhan at jboss.com
Wed Jul 19 14:19:58 EDT 2006


  User: kkhan   
  Date: 06/07/19 14:19:58

  Modified:    src/main/org/jboss/beans/metadata/spi 
                        AnnotationMetaData.java
  Log:
  [JBMICROCONT-98] Make the annotation metadata more free format
  
  Revision  Changes    Path
  1.5       +3 -15     microkernel/src/main/org/jboss/beans/metadata/spi/AnnotationMetaData.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AnnotationMetaData.java
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/main/org/jboss/beans/metadata/spi/AnnotationMetaData.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- AnnotationMetaData.java	23 Jun 2006 10:07:12 -0000	1.4
  +++ AnnotationMetaData.java	19 Jul 2006 18:19:58 -0000	1.5
  @@ -21,7 +21,7 @@
   */
   package org.jboss.beans.metadata.spi;
   
  -import java.util.Set;
  +import java.lang.annotation.Annotation;
   
   import org.jboss.util.JBossInterface;
   
  @@ -29,21 +29,9 @@
    * Metadata about an annotation attribute.
    * 
    * @author <a href="adrian at jboss.com">Adrian Brock</a>
  - * @version $Revision: 1.4 $
  + * @version $Revision: 1.5 $
    */
   public interface AnnotationMetaData extends JBossInterface, MetaDataVisitorNode
   {
  -   /**
  -    * Get the name
  -    * 
  -    * @return the name
  -    */
  -   String getName();
  -   
  -   /**
  -    * Get the annotation attributes.
  -    * 
  -    * @return Set<AnnotationAttributeMetaData>.
  -    */
  -   Set<AnnotationAttributeMetaData> getAttributes();
  +   Annotation getAnnotationInstance();
   }
  
  
  



More information about the jboss-cvs-commits mailing list