1 /*2 * (c) COPYRIGHT 1999 World Wide Web Consortium3 * (Massachusetts Institute of Technology, Institut National de Recherche4 * en Informatique et en Automatique, Keio University).5 * All Rights Reserved. http://www.w3.org/Consortium/Legal/6 *7 * $Id: DescendantSelector.java,v 1.1.1.1 2003/12/28 21:23:47 davidsch Exp $8 */9 package org.w3c.css.sac;10 11 /**12 * @version $Revision: 1.1.1.1 $13 * @author Philippe Le Hegaret14 * @see Selector#SAC_DESCENDANT_SELECTOR15 * @see Selector#SAC_CHILD_SELECTOR16 */17 public interface DescendantSelector extends Selector {18 19 /**20 * Returns the parent selector.21 */ 22 public Selector getAncestorSelector();23 24 /*25 * Returns the simple selector.26 */ 27 public SimpleSelector getSimpleSelector();28 }29