Notes on new trap system

Charles Goodwin <[email protected]> Thu, 02 Oct 2003 12:04:56 +0100
Newsgroups gmane.comp.java.xwt.widgets
Organization XWT Foundation
Message-ID <[email protected]>
Here is something I just thought of when writing the widgets and working 
with even traps.

We now have to specify an argument with all write traps, including mouse 
events.

Whereas before we had:

_Enter = function() { ... }

Now we have:

Enter += function( v ) { ... }

Not that it is an issue, it was just worth noting.

- Charlie