Statistics
| Revision:

root / trunk / libraries / libFMap_geometries / src / org / gvsig / fmap / geom / operation / GeometryOperation.java @ 20761

History | View | Annotate | Download (202 Bytes)

1
package org.gvsig.fmap.geom.operation;
2

    
3
import org.gvsig.fmap.geom.Geometry;
4

    
5
public abstract class GeometryOperation {
6
        
7
        public abstract Object invoke(Geometry geom, GeometryOperationContext ctx);
8

    
9
}