Statistics
| Revision:

gvsig-vectorediting / org.gvsig.vectorediting / trunk / org.gvsig.vectorediting / org.gvsig.vectorediting.lib / org.gvsig.vectorediting.lib.prov / org.gvsig.vectorediting.lib.prov.ellipse / src / main / java / org / gvsig / vectorediting / lib / prov / ellipse / EllipseEditingLibrary.java @ 2109

History | View | Annotate | Download (2.94 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.prov.ellipse;
26

    
27
import org.gvsig.tools.ToolsLocator;
28
import org.gvsig.tools.i18n.I18nManager;
29
import org.gvsig.tools.library.AbstractLibrary;
30
import org.gvsig.tools.library.LibraryException;
31
import org.gvsig.vectorediting.lib.api.EditingLibrary;
32
import org.gvsig.vectorediting.lib.spi.EditingProviderLocator;
33
import org.gvsig.vectorediting.lib.spi.EditingProviderManager;
34

    
35
public class EllipseEditingLibrary extends AbstractLibrary {
36

    
37
    @Override
38
    public void doRegistration() {
39
        registerAsServiceOf(EditingLibrary.class);
40
    }
41

    
42
    @Override
43
    protected void doInitialize() throws LibraryException {
44
    }
45

    
46
    @Override
47
    protected void doPostInitialize() throws LibraryException {
48
        EditingProviderManager manager =
49
            EditingProviderLocator.getProviderManager();
50

    
51
        manager.addProviderFactory(new EllipseEditingProviderFactory());
52
        manager.addProviderFactory(new FilledEllipseEditingProviderFactory());
53
        manager.addProviderFactory(new EllipseCenterAxesEditingProviderFactory());
54
        manager.addProviderFactory(new FilledEllipseCenterAxesEditingProviderFactory());
55

    
56
        manager.registerIcon("vectorediting-tools", "insert-ellipse", this
57
            .getClass().getClassLoader(), this.getClass().getName());
58

    
59
        manager.registerIcon("vectorediting-tools", "insert-filled-ellipse", this
60
            .getClass().getClassLoader(), this.getClass().getName());
61

    
62
        manager.registerIcon("vectorediting-tools", "insert-ellipse-center-axes", this
63
            .getClass().getClassLoader(), this.getClass().getName());
64

    
65
        manager.registerIcon("vectorediting-tools", "insert-filled-ellipse-center-axes", this
66
            .getClass().getClassLoader(), this.getClass().getName());
67

    
68
        registerTranslations();
69
    }
70

    
71
    private void registerTranslations() {
72
        I18nManager manager = ToolsLocator.getI18nManager();
73
        manager.addResourceFamily("i18n/text",
74
            this.getClass().getClassLoader(), "insert-ellipse-editing");
75
    }
76

    
77
}