/[classpath]/classpath/java/beans/EventHandler.java
ViewVC logotype

Diff of /classpath/java/beans/EventHandler.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by mkoch, Sat Jul 17 07:24:26 2004 UTC revision 1.2 by mkoch, Thu Sep 30 14:50:51 2004 UTC
# Line 38  exception statement from your version. * Line 38  exception statement from your version. *
38    
39  package java.beans;  package java.beans;
40    
 import java.lang.reflect.Constructor;  
41  import java.lang.reflect.InvocationHandler;  import java.lang.reflect.InvocationHandler;
42  import java.lang.reflect.InvocationTargetException;  import java.lang.reflect.InvocationTargetException;
43  import java.lang.reflect.Method;  import java.lang.reflect.Method;
# Line 82  public class EventHandler implements Inv Line 81  public class EventHandler implements Inv
81    private String property;    private String property;
82    
83    // String class doesn't already have a capitalize routine.    // String class doesn't already have a capitalize routine.
84    final private String capitalize(String s)    private String capitalize(String s)
85    {    {
86      return s.substring(0, 1).toUpperCase() + s.substring(1);      return s.substring(0, 1).toUpperCase() + s.substring(1);
87    }    }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26