Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_mapcontext / src / org / gvsig / fmap / mapcontext / rendering / legend / events / FeatureDrawnNotification.java @ 30011

History | View | Annotate | Download (342 Bytes)

1
package org.gvsig.fmap.mapcontext.rendering.legend.events;
2

    
3
import org.gvsig.fmap.dal.feature.Feature;
4
import org.gvsig.fmap.geom.Geometry;
5

    
6
public interface FeatureDrawnNotification {
7

    
8
        Feature getFeature();
9

    
10
        /**
11
         * @return the {@link Geometry} to be finally drawn, as it may
12
         * have been reprojected
13
         */
14
        Geometry getDrawnGeometry();
15

    
16
}