You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by jv...@locus.apache.org on 2000/11/01 19:31:44 UTC

cvs commit: jakarta-velocity/src/java/org/apache/velocity/util/introspection ClassMap.java Introspector.java MethodMap.java

jvanzyl     00/11/01 10:31:42

  Modified:    src/java/org/apache/velocity/util/introspection
                        ClassMap.java Introspector.java MethodMap.java
  Log:
  - adding @authors and @version.
  
  Revision  Changes    Path
  1.2       +7 -0      jakarta-velocity/src/java/org/apache/velocity/util/introspection/ClassMap.java
  
  Index: ClassMap.java
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/src/java/org/apache/velocity/util/introspection/ClassMap.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ClassMap.java	2000/11/01 18:17:54	1.1
  +++ ClassMap.java	2000/11/01 18:31:35	1.2
  @@ -60,6 +60,13 @@
   import java.lang.reflect.Method;
   import java.lang.reflect.Modifier;
   
  +/**
  + *
  + * @author <a href="mailto:jvanzyl@periapt.com">Jason van Zyl</a>
  + * @author <a href="mailto:bob@werken.com">Bob McWhirter</a>
  + * @version $Id: ClassMap.java,v 1.2 2000/11/01 18:31:35 jvanzyl Exp $
  + */
  +
   public class ClassMap
   {
       /** 
  
  
  
  1.4       +2 -1      jakarta-velocity/src/java/org/apache/velocity/util/introspection/Introspector.java
  
  Index: Introspector.java
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/src/java/org/apache/velocity/util/introspection/Introspector.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Introspector.java	2000/11/01 17:51:11	1.3
  +++ Introspector.java	2000/11/01 18:31:36	1.4
  @@ -82,7 +82,8 @@
    * This mapping is performed for all the methods in a class
    * and stored for 
    * @author <a href="mailto:jvanzyl@periapt.com">Jason van Zyl</a>
  - * @version $Id: Introspector.java,v 1.3 2000/11/01 17:51:11 jvanzyl Exp $
  + * @author <a href="mailto:bob@werken.com">Bob McWhirter</a>
  + * @version $Id: Introspector.java,v 1.4 2000/11/01 18:31:36 jvanzyl Exp $
    */
   
   // isAssignable checks for arguments that are subclasses
  
  
  
  1.2       +7 -0      jakarta-velocity/src/java/org/apache/velocity/util/introspection/MethodMap.java
  
  Index: MethodMap.java
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/src/java/org/apache/velocity/util/introspection/MethodMap.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MethodMap.java	2000/11/01 17:51:12	1.1
  +++ MethodMap.java	2000/11/01 18:31:37	1.2
  @@ -61,6 +61,13 @@
   
   import java.lang.reflect.Method;
   
  +/**
  + *
  + * @author <a href="mailto:jvanzyl@periapt.com">Jason van Zyl</a>
  + * @author <a href="mailto:bob@werken.com">Bob McWhirter</a>
  + * @version $Id: MethodMap.java,v 1.2 2000/11/01 18:31:37 jvanzyl Exp $
  + */
  +
   public class MethodMap
   {
       Map methodByNameMap = new Hashtable();