1 /* 2 * (c) COPYRIGHT 1999 World Wide Web Consortium 3 * (Massachusetts Institute of Technology, Institut National de Recherche 4 * en Informatique et en Automatique, Keio University). 5 * All Rights Reserved. http://www.w3.org/Consortium/Legal/ 6 * 7 * $Id: SimpleSelector.java,v 1.1.1.1 2003/12/28 21:23:54 davidsch Exp $ 8 */ 9 package org.w3c.css.sac; 10 11 /** 12 * This interface is only for constraints on selectors. 13 * 14 * <p>A <code>ConditionalSelector</code> can only accept a simple selector or a 15 * negative selector.</p> 16 * 17 * @version $Revision: 1.1.1.1 $ 18 * @author Philippe Le Hegaret */ 19 public interface SimpleSelector extends Selector { 20 // empty 21 } 22