Revision 41491 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.impl/src/main/java/org/gvsig/fmap/dal/impl/DefaultDataManager.java

View differences:

DefaultDataManager.java
34 34
import org.gvsig.fmap.dal.DataManager;
35 35
import org.gvsig.fmap.dal.DataServerExplorer;
36 36
import org.gvsig.fmap.dal.DataServerExplorerParameters;
37
import org.gvsig.fmap.dal.DataServerExplorerPool;
37 38
import org.gvsig.fmap.dal.DataStore;
38 39
import org.gvsig.fmap.dal.DataStoreFactory;
39 40
import org.gvsig.fmap.dal.DataStoreParameters;
......
140 141

  
141 142
    private OpenErrorHandler openErrorHandler;
142 143

  
143
    private ArrayList dataTypes;
144
    private List dataTypes;
145
    
146
    private DataServerExplorerPool dataServerExplorerPool = null;
147
    
144 148

  
145 149
    public DefaultDataManager() {
146 150
        /*
......
911 915
            throw new InitializeException("FeatureAttributeGetter", e);
912 916
        }
913 917
    }
918

  
919
    public DataServerExplorerPool getDataServerExplorerPool() {
920
        if( this.dataServerExplorerPool==null )  {
921
            this.dataServerExplorerPool = new DefaultDataServerExplorerPool();
922
        }
923
        return this.dataServerExplorerPool;
924
    }
925
    
926
    public void setDataServerExplorerPool(DataServerExplorerPool pool) {
927
        this.dataServerExplorerPool = pool;
928
    }
929
    
930
    
914 931
}

Also available in: Unified diff