Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / raster / lib / legend / api / colorinterpretation / ColorInterpretationNotification.java @ 43803

History | View | Annotate | Download (801 Bytes)

1
package org.gvsig.raster.lib.legend.api.colorinterpretation;
2

    
3
import org.gvsig.tools.observer.Notification;
4

    
5

    
6
/**
7
 * @author fdiaz
8
 *
9
 */
10
public interface ColorInterpretationNotification extends Notification {
11

    
12
    public final static String CHANGED_COLOR_INTERPRETATION_VALUE = "changed_color_interpretation_value_notification";
13
    public final static String ADDED_COLOR_INTERPRETATION = "added_color_interpretation_notification";
14
    public final static String COPIED_FROM_COLOR_INTERPRETATION = "copied_from_color_interpretation_notification";
15
    public final static String SETTED_PALETTE = "setted_palette_notification";
16
    public final static String SETTED_PALETTE_BAND = "changed_palette_band_notification";
17
    public final static String CHANGED_PALETTE = "changed_palette_notification";
18

    
19
}