01: package abbot.util; 02: 03: /** Abstract a condition test. */ 04: public interface Condition { 05: /** Return the condition state. */ 06: boolean test(); 07: 08: /** Return a description of what the condition is testing. */ 09: String toString(); 10: }