/[classpath]/classpath/java/awt/TextField.java
ViewVC logotype

Diff of /classpath/java/awt/TextField.java

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

revision 1.5 by mark, Tue Jan 22 22:26:58 2002 UTC revision 1.6 by tromey, Sun Mar 24 22:34:24 2002 UTC
# Line 1  Line 1 
1  /* TextField.java -- A one line text entry field  /* TextField.java -- A one line text entry field
2     Copyright (C) 1999 Free Software Foundation, Inc.     Copyright (C) 1999, 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 452  processActionEvent(ActionEvent event) Line 452  processActionEvent(ActionEvent event)
452      action_listeners.actionPerformed(event);      action_listeners.actionPerformed(event);
453  }  }
454    
455    void
456    dispatchEventImpl(AWTEvent e)
457    {
458      if (e.id <= ActionEvent.ACTION_LAST
459          && e.id >= ActionEvent.ACTION_FIRST
460          && (action_listeners != null
461              || (eventMask & AWTEvent.ACTION_EVENT_MASK) != 0))
462        processEvent(e);
463      else
464        super.dispatchEventImpl(e);
465    }
466    
467  /*************************************************************************/  /*************************************************************************/
468    
469  /**  /**

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

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