On a different note though, I had a grand ol' time tonight working with smartGwt's event handlers. They are a lovely thing prone to all kinds of nonsense. Tonight what I found out is that you can't have multiple kinds of click handlers in one class. You might be asking yourself, isn't there just one kind of click handler? nope. not in smartGWT. here we have lots of click handlers. and what I found is that if you want to be able to use multiple kinds of click handlers. You can import the main kind like this :
Import ..form.fields.events.ClickEvent;
Import .. form.fields.events.ClickHandler; |
But you'd also like to use one of these:
widgets.events.ClickEvent;
widgets.events.ClickHandler; |
You can't do it.
Eclipse gets grumpy at you and so the solution is to do something horrendously gross like this:
|
Isn't that wonderful?
welcome to the world I am living in.
Anyways I am off. Too many things to do.. not enough time.
Peace.