Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Mark Waschkowski

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

gwt event handling example (for event handling not taken care of specifically)

// description of your code here
Code below should be used to listen to any event not already covered in API

   1  
   2       sinkEvents(Event.MOUSEEVENTS);
   3      public void onBrowserEvent(Widget sender, Event event)
   4      {
   5          if ((DOM.eventGetButton(event) == Event.BUTTON_RIGHT) &&
   6              (DOM.eventGetType(event) == Event.ONMOUSEDOWN))
   7          { 
   8           ...
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS