Statistics
| Revision:

root / org.gvsig.proj / branches / refactor2018 / org.gvsig.proj / org.gvsig.proj.swing / org.gvsig.proj.swing.api / src / main / java / org / gvsig / proj / swing / CoordinateReferenceSystemSwingManager.java @ 793

History | View | Annotate | Download (2.63 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2012 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
package org.gvsig.proj.swing;
25

    
26
import org.gvsig.proj.CoordinateReferenceSystemManager;
27
import org.gvsig.tools.swing.api.windowmanager.WindowManager;
28

    
29
/**
30
 * This class is responsible of the management of the library's swing user
31
 * interface. It is the swing library's main entry point, and provides all the
32
 * services to manage library swing components.
33
 * 
34
 * @see JProjServicePanel
35
 * @author gvSIG team
36
 * @version $Id$
37
 */
38
public interface CoordinateReferenceSystemSwingManager {
39

    
40
    /**
41
     * Returns the component to select a CoordinateReferenceSystem.
42
     * 
43
     * @return a {@link CoordinateReferenceSystemSelectorComponent} to select a
44
     *         CoordinateReferenceSystem
45
     */
46
    CoordinateReferenceSystemSelectorComponent createCoordinateReferenceSystemSelectionComponent();
47

    
48
    /**
49
     * Returns the component to select a CoordinateTransformation.
50
     * 
51
     * @return a {@link CoordinateTransformationSelectorComponent} to select a
52
     *         CoordinateTransformation 
53
     */
54
    CoordinateTransformationSelectorComponent createCoordinateTransformSelectionComponent();
55

    
56
    /**
57
     * Returns the {@link CoordinateReferenceSystemManager}.
58
     * 
59
     * @return {@link CoordinateReferenceSystemManager}
60
     * @see {@link CoordinateReferenceSystemManager}
61
     */
62
    CoordinateReferenceSystemManager getManager();
63

    
64
    /**
65
     * Returns the translation of a string.
66
     * 
67
     * @param key
68
     *            String to translate
69
     * @return a String with the translation of the string passed by parameter
70
     */
71
    String getTranslation(String key);
72

    
73
    /**
74
     * Returns the {@link WindowManager}.
75
     * 
76
     * @return {@link WindowManager}
77
     */
78
    WindowManager getWindowManager();
79
}