Statistics
| Revision:

svn-gvsig-desktop / tags / v1_0_2_Build_910 / libraries / libFMap / src / com / iver / cit / gvsig / fmap / operations / strategies / ExtendsFeatureVisitor.java @ 11275

History | View | Annotate | Download (528 Bytes)

1
package com.iver.cit.gvsig.fmap.operations.strategies;
2

    
3
import com.iver.cit.gvsig.fmap.core.IGeometry;
4
import com.iver.cit.gvsig.fmap.core.ISymbol;
5

    
6
public interface ExtendsFeatureVisitor extends FeatureVisitor {
7
        /**
8
         * Recibe las geometr?as con su s?mbolo correpondiente
9
         *
10
         * @param g Geometr?a que se recorre
11
         * @param index ?ndice de la geometr?a
12
         * @param symbol Symbol associated to feature
13
         *
14
         * @throws VisitException 
15
         */
16
        void visitWithSymbol(IGeometry g, int index, ISymbol symbol) throws VisitException;
17

    
18
}