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/ChangeFilterClassificationO...

27 lines
719 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 ChangeFilterClassificationOnResultEvent extends GwtEvent<ChangeFilterClassificationOnResultEventHandler> {
public static final GwtEvent.Type<ChangeFilterClassificationOnResultEventHandler> TYPE = new Type<ChangeFilterClassificationOnResultEventHandler>();
@Override
public Type<ChangeFilterClassificationOnResultEventHandler> getAssociatedType() {
return TYPE;
}
@Override
protected void dispatch(ChangeFilterClassificationOnResultEventHandler handler) {
handler.onChangeFilter(this);
}
}