Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.app / org.gvsig.app.mainplugin / src / main / java / org / gvsig / app / prepareAction / PrepareContextView_v1.java @ 41436

History | View | Annotate | Download (2.15 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
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
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.app.prepareAction;
26

    
27
import org.gvsig.fmap.mapcontext.MapContext;
28

    
29
/**
30
 * Interface extending PrepareContextView. The methods defined
31
 * here are indended to be integrated on PrepareContextView, but
32
 * are maintained on this separate interface in order to mantain
33
 * compatibility with existing implementations.
34
 * 
35
 * This interface may be eventually integrated with PrepareContextView
36
 * on the next major refactoring.
37
 *
38
 * @author Cesar Martinez
39
 *
40
 */
41
public interface PrepareContextView_v1 extends PrepareContextView {
42

    
43
    /**
44
     * You can use it to extract information from
45
     * the MapContext that will receive the new layer.
46
     * For example, projection to use, or visible extent.
47
     * 
48
     * @return Returns the MapContext.
49
     */
50
    MapContext getMapContext();
51

    
52
    /**
53
     * Checks whether the MapControl is available.
54
     * The MapControl may not be available in some circumstances, for instance
55
     * when adding layers to a MapContext not associated with a View.
56
     * 
57
     * A MapContext should always be available on the {@link #getMapContext()}
58
     * method.
59
     * 
60
     * @return true if the MapControl is available, false otherwise
61
     */
62
    boolean isMapControlAvailable();
63

    
64
}
65

    
66

    
67