Statistics
| Revision:

gvsig-scripting / org.gvsig.scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.app / org.gvsig.scripting.app.mainplugin / src / main / resources-plugin / scripting / lib / javadocs / scripting / mapcontext / MapContext.java @ 487

History | View | Annotate | Download (857 Bytes)

1
package scripting.dal;
2

    
3
import java.util.Iterator;
4
import org.gvsig.fmap.mapcontext.layers.FLayer;
5

    
6
/**
7
 *
8
 *
9
 */
10
public class MapContext extends org.gvsig.fmap.mapcontext.MapContext {
11

    
12
    /**
13
     * Returns the java object associated to this python object. With the
14
     * current implementation this is not necessary, don't use now python
15
     * wrappers for java objects.
16
     *
17
     * @return
18
     * @deprecated this method now return self alwais.
19
     *
20
     */
21
    public Object __call__() {
22
        return null;
23
    }
24

    
25
    /**
26
     *
27
     * @return
28
     */
29
    public int __len__() {
30
        return 0;
31
    }
32

    
33
    /**
34
     *
35
     * @return
36
     */
37
    public Iterator<FLayer> __iter__() {
38
        return null;
39
    }
40

    
41
    /**
42
     *
43
     * @param index
44
     * @return
45
     */
46
    public FLayer __getitem__(int index) {
47
        return null;
48
    }
49

    
50
}
51