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 / gvsig / javadocs / scripting / mapcontext / FLyrVect.java @ 735

History | View | Annotate | Download (2.29 KB)

1
package scripting.dal;
2

    
3
import java.util.Iterator;
4
import org.cresques.cts.IProjection;
5
import org.gvsig.fmap.dal.feature.Feature;
6
import org.gvsig.fmap.dal.feature.FeatureSelection;
7
import org.gvsig.fmap.dal.feature.FeatureSet;
8
import org.gvsig.fmap.dal.feature.FeatureType;
9

    
10
/**
11
 *
12
 *
13
 */
14
public class FLyrVect extends org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect {
15

    
16
    public IProjection getProjectionCode() {
17
        return null;
18
    }
19
    
20
    /**
21
     *
22
     * @param filterExpresion, optional
23
     * @param sortby, optional
24
     * @param asc, optional
25
     * @return
26
     */
27
    public FeatureSet features(String filterExpresion, String sortby, boolean asc) {
28
        return null;
29
    }
30

    
31
    /**
32
     * 
33
     * @return 
34
     */
35
    public Iterator<Feature> __iter__() {
36
        return null;
37
    }
38

    
39
    /**
40
     * 
41
     * @return 
42
     */
43
    public int __len__() {
44
        return 0;
45
    }
46

    
47
    /**
48
     * 
49
     */
50
    public void edit() {
51
        
52
    }
53

    
54
    /**
55
     * 
56
     */
57
    public void append(Object... values) {
58
        
59
    }
60

    
61
    /**
62
     * 
63
     * @param schema 
64
     */
65
    public void updateSchema(FeatureType schema) {
66
        
67
    }
68

    
69
    /**
70
     * 
71
     * @param feature 
72
     */
73
    public void update(Feature feature) {
74
        
75
    }
76

    
77
    /**
78
     * 
79
     * @return 
80
     */
81
    public FeatureType getSchema() {
82
        return null;
83
    }
84

    
85
    /**
86
     * 
87
     */
88
    public void commit() {
89
        
90
    }
91

    
92
    /**
93
     * 
94
     */
95
    public void abort() {
96
        
97
    }
98

    
99
    /**
100
     * 
101
     * @return 
102
     */
103
    public FeatureSelection getSelecion() {
104
        return null;
105
    }
106

    
107
    /**
108
     * 
109
     * @param selection 
110
     */
111
    public void select(FeatureSelection selection) {
112
        
113
    }
114

    
115
    /**
116
     * 
117
     * @param selection 
118
     */
119
    public void deselect(FeatureSelection selection) {
120
        
121
    }
122

    
123
    /**
124
     * 
125
     * @param feature
126
     * @return 
127
     */
128
    public boolean isSelected(Feature feature) {
129
        return false;
130
    }
131

    
132
    /**
133
     * Returns the java object associated to this python object. With the
134
     * current implementation this is not necessary, don't use now python
135
     * wrappers for java objects.
136
     *
137
     * @return 
138
     * @deprecated this method now return self alwais.
139
     *
140
     */
141
    public Object __call__() {
142
        return null;
143
    }
144

    
145
}