You could technically do that, but you'd need some way to differentiate between events; Maybe with an enum:
I don't think this is a very good approach, though, as you lose the ability to pass specific parameters based on that particular kind of event.
-- public class MyEvent extends GwtEvent<MyEvent.Handler>{ public static enum EventTypes { THIS_EVENT, THAT_EVENT; }; public interface Handler extends EventHandler { void onDispatch(MyEvent event); }
public static final GwtEvent.Type<Handler> TYPE = new GwtEvent.Type<>(); // NOSONAR
private final EventTypes type; public MyEvent(EventTypes type) { this.type = type; }
@Override public GwtEvent.Type<Handler> getAssociatedType() { return TYPE; } public EventTypes getType() { return type; }
@Override protected void dispatch(Handler handler) { handler.onDispatch(this); }}
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment