Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.swing / org.gvsig.fmap.dal.swing.api / src / main / java / org / gvsig / fmap / dal / swing / report / ReportActionFactory.java @ 47049

History | View | Annotate | Download (795 Bytes)

1
package org.gvsig.fmap.dal.swing.report;
2

    
3
import java.awt.event.ActionEvent;
4
import javax.json.JsonObject;
5
import javax.swing.Action;
6
import org.gvsig.fmap.dal.feature.FeatureQuery;
7
import org.gvsig.fmap.dal.feature.FeatureSelection;
8
import org.gvsig.fmap.dal.feature.FeatureStore;
9
import org.gvsig.fmap.dal.swing.DALActionFactory.DALActionContext;
10
import org.gvsig.tools.util.IsApplicable;
11

    
12
public interface ReportActionFactory extends IsApplicable {
13

    
14
    public String getName();
15
    
16
    public ReportAction createReportAction(FeatureStore store, FeatureQuery query, FeatureSelection selecteds, JsonObject json);
17

    
18
    public interface ReportCustomActionFactory {
19
        public String getName();
20

    
21
        public Action createCustomAction(ActionEvent event, DALActionContext context);
22
    }
23
}