forked from geodmms/xdgnjobs

Dennis Kao
2014-04-07 716c0c924e258506155aac628e3ed02eccb5af4b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ximple.eofms.util;
 
import java.awt.Color;
import java.util.List;
 
public interface ColorTableMapping {
    boolean contain(Color color);
 
    List findId(Color color);
 
    Color getColor(int value);
 
    String getColorCode(int i);
}