Statistics
| Revision:

gvsig-vectorediting / org.gvsig.vectorediting / trunk / org.gvsig.vectorediting / org.gvsig.vectorediting.lib / org.gvsig.vectorediting.lib.spi / src / main / java / org / gvsig / vectorediting / lib / spi / AbstractEditingProvider.java @ 2608

History | View | Annotate | Download (2.73 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright ? 2007-2014 gvSIG Association
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24

    
25
package org.gvsig.vectorediting.lib.spi;
26

    
27
import org.gvsig.fmap.geom.Geometry;
28
import org.gvsig.tools.service.spi.AbstractProvider;
29
import org.gvsig.tools.service.spi.ProviderServices;
30
import org.gvsig.vectorediting.lib.api.EditingServiceParameter;
31
import org.gvsig.vectorediting.lib.api.exceptions.InvalidEntryException;
32
import org.slf4j.Logger;
33
import org.slf4j.LoggerFactory;
34

    
35
public abstract class AbstractEditingProvider extends AbstractProvider
36
implements EditingProvider, Geometry.TYPES, Geometry.SUBTYPES {
37
    
38
    private static final Logger LOGGER = LoggerFactory
39
        .getLogger(AbstractEditingProvider.class);
40

    
41
    public AbstractEditingProvider(ProviderServices providerServices) {
42
        super(providerServices);
43
    }
44

    
45
    @Override
46
    public boolean isEnabled(EditingServiceParameter parameter) {
47
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
48
    }
49

    
50
//    @Override
51
//    public void setValue(EditingServiceParameter parameter, Object value) throws InvalidEntryException {
52
//        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
53
//    }
54

    
55
    @Override
56
    public abstract void setValue(EditingServiceParameter parameter, Object value) throws InvalidEntryException;
57
    
58
    @Override
59
    public void activate() {
60
        
61
    }
62

    
63
    @Override
64
    public Object getValue(EditingServiceParameter parameter) {
65
        // To implement in subclasses
66
        LOGGER.warn("'"+this.getClass().getName() + "' dooes not implement the method 'getValue'.");
67
        return null;
68
    }
69

    
70
    @Override
71
    protected EditingProviderServices getProviderServices() {
72
        return (EditingProviderServices)super.getProviderServices();
73
    }
74
    
75
    
76
    
77
}