You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
news-feed/2.8/src/main/java/org/gcube/portlets/user/newsfeed/client/event/ShowNewUpdatesEvent.java

22 lines
528 B
Java

package org.gcube.portlets.user.newsfeed.client.event;
import com.google.gwt.event.shared.GwtEvent;
public class ShowNewUpdatesEvent extends GwtEvent<ShowNewUpdatesEventHandler> {
public static Type<ShowNewUpdatesEventHandler> TYPE = new Type<ShowNewUpdatesEventHandler>();
public ShowNewUpdatesEvent() { }
@Override
public Type<ShowNewUpdatesEventHandler> getAssociatedType() {
return TYPE;
}
@Override
protected void dispatch(ShowNewUpdatesEventHandler handler) {
handler.onShowNewUpdatesClick(this);
}
}