Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.geometry / org.gvsig.fmap.geometry.api / src / main / java / org / gvsig / fmap / geom / GeometryLibrary.java @ 43985

History | View | Annotate | Download (2.48 KB)

1 40559 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40435 jjdelcerro
 *
4 40559 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6 40435 jjdelcerro
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8 40559 jjdelcerro
 * as published by the Free Software Foundation; either version 3
9 40435 jjdelcerro
 * of the License, or (at your option) any later version.
10 40559 jjdelcerro
 *
11 40435 jjdelcerro
 * 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 40559 jjdelcerro
 *
16 40435 jjdelcerro
 * 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 40559 jjdelcerro
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 40435 jjdelcerro
 * MA  02110-1301, USA.
20 40559 jjdelcerro
 *
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 40435 jjdelcerro
 */
24
25
package org.gvsig.fmap.geom;
26
27
import org.cresques.ProjectionLibrary;
28
29
import org.gvsig.fmap.geom.primitive.Envelope;
30
import org.gvsig.tools.ToolsLibrary;
31
import org.gvsig.tools.ToolsLocator;
32
import org.gvsig.tools.dataTypes.DataTypesManager;
33
import org.gvsig.tools.library.AbstractLibrary;
34
import org.gvsig.tools.library.LibraryException;
35
import org.gvsig.tools.locator.ReferenceNotRegisteredException;
36
37
/**
38
 * Registers the default implementation for {@link GeometryManager}.
39 42309 fdiaz
 *
40 40435 jjdelcerro
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera</a>
41
 */
42
public class GeometryLibrary extends AbstractLibrary {
43
44 43985 jjdelcerro
    @Override
45 40435 jjdelcerro
    public void doRegistration() {
46
        registerAsAPI(GeometryLibrary.class);
47
        require(ToolsLibrary.class);
48
        require(ProjectionLibrary.class);
49
    }
50
51 43985 jjdelcerro
    @Override
52 40435 jjdelcerro
    protected void doInitialize() throws LibraryException {
53 43985 jjdelcerro
        DataTypesManager dataTypesManager = ToolsLocator.getDataTypesManager();
54
        dataTypesManager.addtype(DataTypes.GEOMETRY, "Geometry", "Geometry",
55
            Geometry.class, null);
56
        dataTypesManager.addtype(DataTypes.ENVELOPE, "Envelope", "Envelope",
57
            Envelope.class, null);
58
59 42376 fdiaz
    }
60
61 43985 jjdelcerro
    @Override
62 42376 fdiaz
    protected void doPostInitialize() throws LibraryException {
63 40435 jjdelcerro
        // Validate there is any implementation registered.
64 40641 jjdelcerro
        if(! GeometryLocator.getInstance().exists(GeometryLocator.GEOMETRY_MANAGER_NAME)) {
65 40435 jjdelcerro
            throw new ReferenceNotRegisteredException(
66
                GeometryLocator.GEOMETRY_MANAGER_NAME,
67
                GeometryLocator.getInstance());
68
        }
69
    }
70
}