Statistics
| Revision:

root / branches / v2_0_0_prep / applications / appgvSIG / src / org / gvsig / app / project / documents / view / ViewDocument.java @ 38562

History | View | Annotate | Download (1.42 KB)

1
package org.gvsig.app.project.documents.view;
2

    
3
import java.beans.PropertyChangeListener;
4

    
5
import org.gvsig.app.project.Project;
6
import org.gvsig.app.project.documents.Document;
7
import org.gvsig.fmap.mapcontext.MapContext;
8

    
9

    
10
public interface ViewDocument extends Document {
11

    
12
        /**
13
         * Gets the FMap's contexts of the main map in the view.
14
         *
15
         * @return
16
         */
17
        public MapContext getMapContext();
18

    
19
        /**
20
         * Gets the FMap's context from the locator, which is the
21
         * small map in the left-bottom corner of the View.
22
         *
23
         * @return
24
         */
25
        public MapContext getMapOverViewContext();
26

    
27
        /**
28
         * @see org.gvsig.app.project.documents.view.DefaultViewDocument#setMapContext(org.gvsig.fmap.mapcontext.MapContext)
29
         */
30
        public void setMapContext(MapContext fmap);
31

    
32
        public void setMapOverViewContext(MapContext fmap);
33

    
34
        public String getName();
35

    
36
        public Project getProject();
37

    
38
        public void addPropertyChangeListener(PropertyChangeListener listener);
39

    
40
//        public String getExtLink();
41
//
42
//        public int getTypeLink();
43
//
44
//        /**
45
//     * Se selecciona la extensi?n para realizar cuando se quiera el link.
46
//     *
47
//     * @param s nombre del campo.
48
//     */
49
//        public void setExtLink(String s);
50
//
51
//        /**
52
//     * Se selecciona el tipo de fichero para realizar cuando se quiera el link.
53
//     *
54
//     * @param i tipo de fichero.
55
//     */
56
//        public void setTypeLink(int i);
57
//
58
//        public void setSelectedField(String s);
59
//
60
//        public String getSelectedField();
61
        
62
}