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 / colortable / ColorTableNotification.java @ 43803

History | View | Annotate | Download (802 Bytes)

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

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

    
5

    
6
public interface ColorTableNotification extends Notification {
7

    
8
    public final static String COMPRESSED_COLOR_TABLE = "compressed_color_table_notification";
9
    public final static String COPIED_FROM_COLOR_TABLE = "copied_from_color_table_notification";
10
    public final static String REMOVED_DUPLICATED_VALUES_COLOR_TABLE = "removed_duplicated_values_color_table_notification";
11
    public final static String SETTED_CLASS_VALUES_COLOR_TABLE = "setted_class_values_color_table_notification";
12
    public final static String CHANGED_INTERPOLATED_COLOR_TABLE = "changed_interpolated_color_table_notification";
13
    public final static String RENAMED_COLOR_TABLE = "renamed_color_table_notification";
14

    
15
}