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 Selector#SAC_TEXT_NODE_SELECTOR
15: * @see Selector#SAC_CDATA_SECTION_NODE_SELECTOR
16: * @see Selector#SAC_COMMENT_NODE_SELECTOR
17: */
18: public interface CharacterDataSelector extends SimpleSelector {
19:
20: /**
21: * Returns the character data.
22: */
23: public String getData();
24: }
|