forked from geodmms/xdgnjobs

Dennis Kao
2013-08-08 b2bd174eebbd067f2b3c9748ea779398a4719530
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);
}