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 29598 jpiera
package org.gvsig.app.project.documents.view;
2 7392 sbayarri
3
import java.beans.PropertyChangeListener;
4
5 29598 jpiera
import org.gvsig.app.project.Project;
6 31496 jjdelcerro
import org.gvsig.app.project.documents.Document;
7 20994 jmvivo
import org.gvsig.fmap.mapcontext.MapContext;
8
9 7392 sbayarri
10 31496 jjdelcerro
public interface ViewDocument extends Document {
11 7392 sbayarri
12
        /**
13
         * Gets the FMap's contexts of the main map in the view.
14
         *
15
         * @return
16
         */
17 7409 caballero
        public MapContext getMapContext();
18 7392 sbayarri
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 7409 caballero
        public MapContext getMapOverViewContext();
26 7392 sbayarri
27
        /**
28 31496 jjdelcerro
         * @see org.gvsig.app.project.documents.view.DefaultViewDocument#setMapContext(org.gvsig.fmap.mapcontext.MapContext)
29 7392 sbayarri
         */
30 7409 caballero
        public void setMapContext(MapContext fmap);
31 7392 sbayarri
32 7409 caballero
        public void setMapOverViewContext(MapContext fmap);
33 7392 sbayarri
34 7414 sbayarri
        public String getName();
35 7392 sbayarri
36 7414 sbayarri
        public Project getProject();
37 7392 sbayarri
38 7414 sbayarri
        public void addPropertyChangeListener(PropertyChangeListener listener);
39 7392 sbayarri
40 33275 jjdelcerro
//        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 9044 cesar
62 7392 sbayarri
}