/** * Originally a class to hold the colormap -- now holds other graphics properties, * like line thickness. * @author mds * */ public interface IColorMap { public java.awt.Color getColor(Integer idx); public java.awt.Color getTextColor(Integer nImportance); public Integer getMaxColor(); public boolean overridesLineThickness(); public int getLineThick(); /** * Returns null if this implementation doesn't supply a font * @return */ public java.awt.Font getFont(); }