Sunday, May 17, 2009

GWT Handler Example

I setup a simple micro gwt application project to try out the new GWT events system, which I must say, far exceeds the previous listener system. I have to say, I had to change my mind set on how I view an event. I didn't realize there is more than one method to view how a event happens (check out gwt events and handlers for more info). It was hard at first to understand what was going on. I could only find one page with the documentation of an example of a custom gwtevent. So I started reverse engineering the GWT, in that I started understanding a little bit about the event system.

Here is what I came up with:

Demo of new event system: http://gwtexample.appspot.com/

SVN Source: http://code.google.com/p/gwt-examples/source/browse/#svn/trunk/gwt_handler_example/src/com/gawkat/gwt/example_handler/client%3Fstate%3Dclosed

Social Collaboration Through Applications State Reference

I have wrote two applications with over 20,000 lines of code. Events are critical to observe and interact with. I think the wild card for me most of the time is, how much of the applications state do I want to put into the link so it can be referenced back to. The applications current state could be stated in the link to some extent. So far I have decided not to put the entire applications state of view in the link.

Although working at Verizon and deploying the an application into a enterprise environment, has made me think twice about this. It's the social sharing part where a url link is important. Since enterprise environments exist over multiple localities and the application span multiple work groups, sharing is critical because everybody has a different take on what they may see, so collaboration is needed and a url link stating the other persons seeing is needed. Especially in my case, where I use my application for metrics where applications state is constantly collaborated on.

For instance, in my metrics system, there are about 20 filters that set criteria for the charts drawn on the page. This could be set in the link but every time you add an parameter into the link, user readability and possibility of reference back to degrades. Some email clients will cut off the link in correctly. But user readability add to simplicity and simplicity adds to efficiency.

What would be the best way to save the applications state via a link? This will need more research.

How I see an application: Navigation Image

Trying out the Dart Analysis Server

I wanted to see how the Dart Analysis Server was put together and worked. I started looking to see how I could wire it up and try out the co...