Statistics
| Revision:

root / trunk / libraries / libTopology / src / org / gvsig / topology / TopologyPersister.java @ 13329

History | View | Annotate | Download (300 Bytes)

1
package org.gvsig.topology;
2

    
3
import java.util.Map;
4

    
5

    
6
/**
7
 *Class with the responsability of persist topologies
8
 *and their elements.
9
 */
10
public class TopologyPersister {
11
 
12
        public static void persist(Topology topology) {
13
        }
14
         
15
        public static Topology load(Map storeParams) {
16
                return null;
17
        }
18
         
19
}
20