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 / dal / FeatureSet.java @ 487

History | View | Annotate | Download (712 Bytes)

1
 
2
 
3
package scripting.dal;
4

    
5
import java.util.Iterator;
6
import org.gvsig.fmap.dal.feature.Feature;
7

    
8
public interface FeatureSet extends org.gvsig.fmap.dal.feature.FeatureSet { 
9

    
10

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

    
21

    
22
  /**
23
   * Gets the number of features of the set. 
24
   *
25
   * This method allow to use "len(set)"
26
   *
27
   */
28
  public void __len__() ;
29

    
30
  /**
31
   * Allow to iterate ower the features of the set. 
32
   *
33
   */
34
  public Iterator<Feature> __iter__() ;
35

    
36
  
37
}