Revision 487 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

View differences:

FeatureSet.java
2 2
 
3 3
package scripting.dal;
4 4

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

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

  
7 10

  
......
13 16
   * @deprecated this method now return self alwais.
14 17
   *
15 18
   */
16
  public void __call__() ;
19
  public Object __call__() ;
17 20

  
18 21

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

  
33 36
  
34 37
}

Also available in: Unified diff