Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / SelectionByThemeVisitor.java @ 213

History | View | Annotate | Download (929 Bytes)

1
/* Generated by Together */
2

    
3
package com.iver.cit.gvsig.fmap;
4

    
5
import com.iver.cit.gvsig.fmap.fshape.FGeometry;
6

    
7
public class SelectionByThemeVisitor implements FeatureVisitor {
8
    /**
9
     * Recibe las geometr?as a medida que se van recorriendo en la estrategia y selecciona del FLyrVect que tiene como atributo, aquellas que cumplan la relaci?n almacenada tambi?n como atributo
10
     */
11
    public void visit(FGeometry g){ }
12

    
13
    /**
14
     * Establece la relaci?n que han de tener las features que se van a visitar con  las features del FLyrVect que se va a seleccionar 
15
     */
16
    public void setRelation(int rel) {
17
    }
18

    
19
    public void setThemes(FLyrVect[] vectorials) {
20
    }
21

    
22
    private int relation;
23
    private FLyrVect[] vectorial;
24
        /**
25
         * @see com.iver.cit.gvsig.fmap.FeatureVisitor#stop()
26
         */
27
        public void stop() {
28
        }
29

    
30
        /**
31
         * @see com.iver.cit.gvsig.fmap.FeatureVisitor#start()
32
         */
33
        public void start() {
34
        }
35
}