[jboss-cvs] JBossAS SVN: r60335 - projects/microcontainer/trunk/container/src/main/org/jboss/reflect/spi.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Feb 6 11:45:58 EST 2007


Author: adrian at jboss.org
Date: 2007-02-06 11:45:57 -0500 (Tue, 06 Feb 2007)
New Revision: 60335

Modified:
   projects/microcontainer/trunk/container/src/main/org/jboss/reflect/spi/DelegateClassInfo.java
Log:
Fix the delegate classinfo not passing some TypeInfo methods to the delegate.

Modified: projects/microcontainer/trunk/container/src/main/org/jboss/reflect/spi/DelegateClassInfo.java
===================================================================
--- projects/microcontainer/trunk/container/src/main/org/jboss/reflect/spi/DelegateClassInfo.java	2007-02-06 16:45:25 UTC (rev 60334)
+++ projects/microcontainer/trunk/container/src/main/org/jboss/reflect/spi/DelegateClassInfo.java	2007-02-06 16:45:57 UTC (rev 60335)
@@ -237,6 +237,21 @@
       return delegate.getType();
    }
 
+   public boolean isAnnotation()
+   {
+      return delegate.isAnnotation();
+   }
+
+   public boolean isCollection()
+   {
+      return delegate.isCollection();
+   }
+
+   public boolean isMap()
+   {
+      return delegate.isMap();
+   }
+
    @Override
    public boolean isArray()
    {




More information about the jboss-cvs-commits mailing list