This repository has been archived on 2024-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
species-discovery/src/main/java/org/gcube/portlets/user/speciesdiscovery/client/event/ViewDetailsOfSelectedEvent....

31 lines
685 B
Java

/**
*
*/
package org.gcube.portlets.user.speciesdiscovery.client.event;
import com.google.gwt.event.shared.GwtEvent;
/**
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
*
*/
public class ViewDetailsOfSelectedEvent extends GwtEvent<ViewDetailsOfSelectedEventHandler> {
public static final GwtEvent.Type<ViewDetailsOfSelectedEventHandler> TYPE = new Type<ViewDetailsOfSelectedEventHandler>();
@Override
public Type<ViewDetailsOfSelectedEventHandler> getAssociatedType() {
return TYPE;
}
@Override
protected void dispatch(ViewDetailsOfSelectedEventHandler handler) {
handler.onViewDetails(this);
}
public ViewDetailsOfSelectedEvent() {
}
}