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/LoadDataSourceEvent.java

30 lines
638 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 LoadDataSourceEvent extends GwtEvent<LoadDataSourceEventHandler> {
public static final GwtEvent.Type<LoadDataSourceEventHandler> TYPE = new Type<LoadDataSourceEventHandler>();
@Override
public Type<LoadDataSourceEventHandler> getAssociatedType() {
return TYPE;
}
@Override
protected void dispatch(LoadDataSourceEventHandler handler) {
handler.onLoadDataSource(this);
}
public LoadDataSourceEvent() {
}
}