Revision 46160 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.api/src/main/java/org/gvsig/fmap/dal/DataTransaction.java

View differences:

DataTransaction.java
22 22
package org.gvsig.fmap.dal;
23 23

  
24 24
import org.gvsig.fmap.dal.exception.DataException;
25
import org.gvsig.fmap.dal.feature.FeatureStore;
25 26
import org.gvsig.tools.dispose.Disposable;
26 27

  
27 28
/**
......
57 58

  
58 59
    public void add(Disposable resource) throws DataException;
59 60
    
61
    public void add(DataServerExplorer explorer, String id);
62

  
63
    public void add(DataServerExplorer explorer, String id, boolean local);
64

  
65
    public void add(DataStore store, String id);
66

  
67
    public void add(DataStore store, String id, boolean local);
68

  
60 69
    public void remove(DataStore store) throws DataException;
61 70
    
71
    public void remove(DataServerExplorer serverExplorer);
72
    
62 73
    public boolean isInProgress();
74

  
75
    public FeatureStore getFeatureStore(String id);
76

  
77
    public DataServerExplorer getServerExplorer(String id);
63 78
}

Also available in: Unified diff