Statistics
| Revision:

gvsig-attributeeditor / org.gvsig.attributeeditor / trunk / org.gvsig.attributeeditor / org.gvsig.featureform.swing / org.gvsig.featureform.swing.api / src / main / java / org / gvsig / featureform / swing / FeatureFormDefinitionsProvider.java @ 43

History | View | Annotate | Download (410 Bytes)

1

    
2
package org.gvsig.featureform.swing;
3

    
4
import java.io.IOException;
5
import org.gvsig.fmap.dal.exception.DataException;
6
import org.gvsig.fmap.dal.feature.FeatureStore;
7
import org.gvsig.tools.dynobject.DynClass;
8

    
9

    
10
public interface FeatureFormDefinitionsProvider {
11

    
12
    public void put(FeatureStore store) throws DataException, IOException;
13
    
14
    public DynClass get(FeatureStore store) throws DataException;
15
}