geoportal-data-entry-app/src/main/java/org/gcube/portlets/user/geoportaldataentry/client/events/ActionOnItemEventHandler.java

23 lines
627 B
Java
Raw Normal View History

2021-08-04 17:11:46 +02:00
package org.gcube.portlets.user.geoportaldataentry.client.events;
import org.gcube.application.geoportalcommon.shared.products.model.RecordDV;
2021-08-04 17:11:46 +02:00
import com.google.gwt.event.shared.EventHandler;
/**
2021-08-05 11:21:39 +02:00
* The Interface ActionOnItemEventHandler.
2021-08-04 17:11:46 +02:00
*
* @author Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it
*
2021-08-05 11:21:39 +02:00
* Aug 5, 2021
2021-08-04 17:11:46 +02:00
*/
2021-08-05 11:21:39 +02:00
public interface ActionOnItemEventHandler extends EventHandler {
2021-08-04 17:11:46 +02:00
/**
2021-08-05 11:21:39 +02:00
* On do action fired.
2021-08-04 17:11:46 +02:00
*
2021-08-05 11:21:39 +02:00
* @param <T> the generic type
2021-08-04 17:11:46 +02:00
* @param showItemEvent the show item event
*/
<T extends RecordDV> void onDoActionFired(ActionOnItemEvent<T> showItemEvent);
2021-08-04 17:11:46 +02:00
}