Revision 42512 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/featureform/swing/FeatureFormDefinitionsProvider.java

View differences:

FeatureFormDefinitionsProvider.java
11 11

  
12 12
public interface FeatureFormDefinitionsProvider extends Iterable<Entry> {
13 13
    
14
    public interface Entry {
14
    public interface Entry extends Comparable<Entry>{
15 15
        public DynClass getDynClass();
16 16
        public String getKey();
17 17
        public String getXml();
18
        public boolean setXml(String xml);
18 19
    }
19 20
    
20
    public void put(FeatureStore store) throws DataException, IOException;
21
    
22
    public DynClass get(FeatureStore store) throws DataException;
21
    public Entry get(FeatureStore store) throws DataException;
23 22

  
24
    public Entry getEntry(FeatureStore store) throws DataException;
23
    public void put(Entry entry) throws DataException, IOException;
25 24

  
25
    @Override
26 26
    public Iterator<Entry> iterator();
27 27

  
28
    public boolean check(Entry entry, String xml);
28
    public void put(FeatureStore store) throws DataException, IOException;
29
    
30
    public DynClass getDynClass(FeatureStore store) throws DataException;
29 31

  
30
    public boolean update(Entry entry, String xml);
31 32
}

Also available in: Unified diff