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

26 lines
533 B
Java

/**
*
*/
package org.gcube.portlets.user.speciesdiscovery.client.event;
import com.google.gwt.event.shared.EventHandler;
/**
* The Interface CreateGisLayerJobEventHandler.
*
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* Feb 9, 2017
*/
public interface CreateGisLayerJobEventHandler extends EventHandler {
/**
* On create gis layer job.
*
* @param createGisLayerJobEvent the create gis layer job event
*/
public void onCreateGisLayerJob(
CreateGisLayerJobEvent createGisLayerJobEvent);
}