1 package net.suberic.pooka.gui.filter; 2 3 /** 4 * This defines a filter which can be used on a Folder Table. These filters 5 * should do things like change colors, fonts, etc. They probably can't 6 * or shouldn't be used actually to remove messages from the display. 7 */ 8 public interface DisplayFilter extends net.suberic.pooka.filter.FilterAction { 9 10 /** 11 * Applies the filter to the given component. 12 */ 13 public void apply(java.awt.Component target); 14 15 } 16