Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / fmap / mapcontext / raster / api / legend / listeners / RasterLegendChangedListener.java @ 44831

History | View | Annotate | Download (488 Bytes)

1
package org.gvsig.fmap.mapcontext.raster.api.legend.listeners;
2

    
3
import org.gvsig.fmap.mapcontext.raster.api.legend.RasterLegendEvent;
4
import org.gvsig.fmap.mapcontext.rendering.legend.events.LegendContentsChangedListener;
5

    
6
/**
7
 * Interface with raster legend events
8
 */
9
public interface RasterLegendChangedListener extends LegendContentsChangedListener{
10

    
11
    public boolean colorInterpretationChanged(RasterLegendEvent e);
12

    
13
    public boolean operationListChanged(RasterLegendEvent e);
14
}