01: /*
02: * (c) COPYRIGHT 1999 World Wide Web Consortium
03: * (Massachusetts Institute of Technology, Institut National de Recherche
04: * en Informatique et en Automatique, Keio University).
05: * All Rights Reserved. http://www.w3.org/Consortium/Legal/
06: *
07: * $Id$
08: */
09: package org.w3c.css.sac;
10:
11: /**
12: * @version $Revision$
13: * @author Philippe Le Hegaret
14: * @see Condition#SAC_AND_CONDITION
15: * @see Condition#SAC_OR_CONDITION
16: */
17: public interface CombinatorCondition extends Condition {
18:
19: /**
20: * Returns the first condition.
21: */
22: public Condition getFirstCondition();
23:
24: /**
25: * Returns the second condition.
26: */
27: public Condition getSecondCondition();
28: }
|