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 @ 1563

History | View | Annotate | Download (2.21 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.dialogremember.impl.DefaultDialogRememberManager;
26
import org.gvsig.filedialogchooser.impl.DefaultFileDialogChooserManager;
27
import org.gvsig.svgsupport.DumbSVGSupportManager;
28
import org.gvsig.tools.library.AbstractLibrary;
29
import org.gvsig.tools.library.Library;
30
import org.gvsig.tools.library.LibraryException;
31
import org.gvsig.tools.util.ToolsUtilLibrary;
32
import org.gvsig.tools.util.ToolsUtilLocator;
33

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

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

    
47
    @Override
48
    protected void doInitialize() throws LibraryException {
49
        ToolsUtilLocator.registerDefaultToolsUtilManager(DefaultToolsUtilManager.class);
50
        ToolsUtilLocator.registerDefaultDialogRememberManager(DefaultDialogRememberManager.class);
51
        ToolsUtilLocator.registerDefaultFileDialogChooserManager(DefaultFileDialogChooserManager.class);
52
        ToolsUtilLocator.registerDefaultSVGSupportManager(DumbSVGSupportManager.class);
53
    }
54

    
55
    @Override
56
    protected void doPostInitialize() throws LibraryException {
57

    
58
    }
59

    
60
}