01: package com.jclark.xml.parse;
02:
03: /**
04: * Information about a processing instruction.
05: * @see com.jclark.xml.parse.base.Application#processingInstruction
06: * @version $Revision: 1.6 $ $Date: 1998/05/27 19:07:23 $
07: */
08: public interface ProcessingInstructionEvent extends LocatedEvent {
09: /**
10: * Returns the target of the processing instruction.
11: */
12: String getName();
13:
14: /**
15: * Returns the part of the processing instruction following the
16: * target. Leading white space is not included.
17: * The string will be empty rather than null if the processing
18: * instruction contains only a target.
19: */
20: String getInstruction();
21: }
|