Revision 37780 branches/v2_0_0_prep/libraries/org.gvsig.exportto/org.gvsig.exportto.lib/org.gvsig.exportto.lib.api/src/main/java/org/gvsig/exportto/ExporttoServiceFinishAction.java

View differences:

ExporttoServiceFinishAction.java
25 25
import org.gvsig.fmap.dal.feature.FeatureStore;
26 26

  
27 27
/**
28
 * Action that can be executed at the end of the export process. 
29
 * An example of action can be load the destination {@link FeatureStore}
30
 * like a layer in a view.
28
 * Action that can be executed at the end of the export process.
29
 * An example of action can be load the destination {@link FeatureStore} like a
30
 * layer in a view.
31 31
 * 
32 32
 * @author gvSIG Team
33 33
 * @version $Id$
34
 *
34
 * 
35 35
 */
36 36
public interface ExporttoServiceFinishAction {
37
    
37

  
38 38
    /**
39 39
     * This method is called at the end of an export process.
40
     * 
40 41
     * @param layerName
41
     *          name of the new layer that can be added to gvSIG.
42
     *            name of the new layer that can be added to gvSIG.
42 43
     * @param dataStoreParameters
43
     *          the parameters that can be used to create the exported store.
44
     *            the parameters that can be used to create the exported store.
44 45
     */
45
    public void finished(String layerName, DataStoreParameters dataStoreParameters);
46
    public void finished(String layerName,
47
        DataStoreParameters dataStoreParameters);
46 48
}

Also available in: Unified diff