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: * This simple matches a
13: * <a href="http://www.w3.org/TR/REC-xml#sec-pi">processing instruction</a>.
14: *
15: * @version $Revision$
16: * @author Philippe Le Hegaret
17: * @see Selector#SAC_PROCESSING_INSTRUCTION_NODE_SELECTOR
18: */
19: public interface ProcessingInstructionSelector extends SimpleSelector {
20:
21: /**
22: * Returns the <a href="http://www.w3.org/TR/REC-xml#NT-PITarget">target</a>
23: * of the processing instruction.
24: */
25: public String getTarget();
26:
27: /**
28: * Returns the character data.
29: */
30: public String getData();
31: }
|