Statistics
| Revision:

svn-gvsig-desktop / 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 / AbstractDataStoreFactory.java @ 43020

History | View | Annotate | Download (615 Bytes)

1

    
2
package org.gvsig.fmap.dal.impl;
3

    
4
import org.gvsig.fmap.dal.DataStoreFactory_v2_4;
5

    
6

    
7
public abstract class AbstractDataStoreFactory  
8
    implements DataStoreFactory_v2_4
9
    {
10

    
11
    private final String name;
12
    private final String description;
13
            
14
    protected AbstractDataStoreFactory(
15
            String name,
16
            String description
17
        ) {
18
        this.name = name;
19
        this.description = description;
20
    }
21
    @Override
22
    public String getName() {
23
        return this.name;
24
    }
25

    
26
    @Override
27
    public String getDescription() {
28
        return this.description;
29
    }
30
    
31
}