1 /* 2 * @(#)Conditional.java 1.6 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package java.awt; 9 10 /** 11 * Conditional is used by the EventDispatchThread's message pumps to 12 * determine if a given pump should continue to run, or should instead exit 13 * and yield control to the parent pump. 14 * 15 * @version 1.6 12/19/03 16 * @author David Mendenhall 17 */ 18 interface Conditional { 19 boolean evaluate(); 20 } 21