/** * A class implementing UseColor can be notified to use a color. */ interface UseColor { void UseColor(String color); }