1 /*2 * (c) COPYRIGHT 1999 World Wide Web Consortium3 * (Massachusetts Institute of Technology, Institut National de Recherche4 * 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 a13 * <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 Hegaret17 * @see Selector#SAC_PROCESSING_INSTRUCTION_NODE_SELECTOR18 */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 }32