KickJava   Java API By Example, From Geeks To Geeks.

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


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

9 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: 1.1.1.1 $
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 JavaDoc getTarget();
26     
27     /**
28      * Returns the character data.
29      */

30     public String JavaDoc getData();
31 }
32
Popular Tags