KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > css > sac > ConditionalSelector


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: ConditionalSelector.java,v 1.1.1.1 2003/12/28 21:23:44 davidsch Exp $
8  */

9 package org.w3c.css.sac;
10
11 /**
12  * @version $Revision: 1.1.1.1 $
13  * @author Philippe Le Hegaret
14  * @see Selector#SAC_CONDITIONAL_SELECTOR
15  */

16 public interface ConditionalSelector extends SimpleSelector {
17
18     /**
19      * Returns the simple selector.
20      * <p>The simple selector can't be a <code>ConditionalSelector</code>.</p>
21      */

22     public SimpleSelector getSimpleSelector();
23
24     /**
25      * Returns the condition to be applied on the simple selector.
26      */

27     public Condition getCondition();
28 }
29
Popular Tags