Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.util / org.gvsig.tools.util.impl / src / main / java / org / gvsig / tools / util / impl / ToolsUtilLibraryImpl.java @ 1746

History | View | Annotate | Download (2.53 KB)

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

    
25
import org.gvsig.configurableactions.DefaultConfigurableActionsMamager;
26
import org.gvsig.filedialogchooser.impl.DefaultFileDialogChooserManager;
27
import org.gvsig.imageviewer.DefaultImageViewerManager;
28
import org.gvsig.propertypage.impl.DefaultPropertiesPageManager;
29
import org.gvsig.svgsupport.DumbSVGSupportManager;
30
import org.gvsig.tools.library.AbstractLibrary;
31
import org.gvsig.tools.library.Library;
32
import org.gvsig.tools.library.LibraryException;
33
import org.gvsig.tools.util.ToolsUtilLibrary;
34
import org.gvsig.tools.util.ToolsUtilLocator;
35

    
36
/**
37
 * {@link Library} for the default tools util implementation.
38
 *
39
 * @author gvSIG team
40
 */
41
public class ToolsUtilLibraryImpl extends AbstractLibrary {
42

    
43
    @Override
44
    public void doRegistration() {
45
        super.doRegistration();
46
        registerAsImplementationOf(ToolsUtilLibrary.class);
47
    }
48

    
49
    @Override
50
    protected void doInitialize() throws LibraryException {
51
        ToolsUtilLocator.registerDefaultToolsUtilManager(DefaultToolsUtilManager.class);
52
        ToolsUtilLocator.registerDefaultFileDialogChooserManager(DefaultFileDialogChooserManager.class);
53
        ToolsUtilLocator.registerDefaultSVGSupportManager(DumbSVGSupportManager.class);
54
        ToolsUtilLocator.registerDefaultImageViewerManager(DefaultImageViewerManager.class);
55
        ToolsUtilLocator.registerDefaultConfigurableActionsMamager(DefaultConfigurableActionsMamager.class);
56
        ToolsUtilLocator.registerDefaultPropertiesPageManager(DefaultPropertiesPageManager.class);
57
    }
58

    
59
    @Override
60
    protected void doPostInitialize() throws LibraryException {
61

    
62
    }
63

    
64
}