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 / searchPostProcess / SearchPostProcessFactory.java @ 45704

History | View | Annotate | Download (1005 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.fmap.dal.swing.searchPostProcess;
7

    
8
import org.gvsig.fmap.dal.feature.FeatureQuery;
9
import org.gvsig.fmap.dal.feature.FeatureStore;
10
import org.gvsig.fmap.dal.swing.searchpanel.SearchParameters;
11
import org.gvsig.tools.dynobject.DynObject;
12

    
13
/**
14
 *
15
 * @author jovivas
16
 */
17
public interface SearchPostProcessFactory {
18
    
19
    public String getName();
20
    
21
    public String getLabel();
22
    
23
    public String getDescription();
24
    
25
    public DynObject createProcessParameters(FeatureStore input, FeatureQuery query, SearchParameters searchParams);
26
    
27
    public boolean hasProcessParameters();
28
    
29
    public boolean isApplicable(FeatureStore input);
30
    
31
    public SearchPostProcess createProcess(SearchPostProcessFactory factory, FeatureStore input, FeatureQuery query, DynObject parameters);
32
    
33
}