XML for Java EA2

com.ibm.xml.framework
Interface XMLScanner

All Known Implementing Classes:
XMLDocumentScanner, XMLDTDScanner

public abstract interface XMLScanner
extends com.ibm.xml.readers.XMLEntityHandler.ReaderStateInterest

This is the interface used by the XMLEntityHandler to pass state changes and character data to the scanner.

Version:
Revision: %M% %I% %W% %Q%

Field Summary
static int SCANNER_STATE_END_OF_CDSECT
          These are the return values for the scanContent() method.
static int SCANNER_STATE_END_OF_INPUT
          These are the return values for the scanContent() method.
static int SCANNER_STATE_INVALID_CHAR
          These are the return values for the scanContent() method.
static int SCANNER_STATE_MARKUP_END_OF_INPUT
          These are the return values for the scanContent() method.
static int SCANNER_STATE_MARKUP_NOT_RECOGNIZED
          These are the return values for the scanContent() method.
static int SCANNER_STATE_MATCHING_ETAG
          These are the return values for the scanContent() method.
static int SCANNER_STATE_REFERENCE_END_OF_INPUT
          These are the return values for the scanContent() method.
static int SCANNER_STATE_START_OF_CDSECT
          These are the return values for the scanContent() method.
static int SCANNER_STATE_START_OF_CHARREF
          These are the return values for the scanContent() method.
static int SCANNER_STATE_START_OF_COMMENT
          These are the return values for the scanContent() method.
static int SCANNER_STATE_START_OF_ELEMENT
          These are the return values for the scanContent() method.
static int SCANNER_STATE_START_OF_ENTITYREF
          These are the return values for the scanContent() method.
static int SCANNER_STATE_START_OF_ETAG
          These are the return values for the scanContent() method.
static int SCANNER_STATE_START_OF_PI
          These are the return values for the scanContent() method.
 
Methods inherited from interface com.ibm.xml.readers.XMLEntityHandler.ReaderStateInterest
endEntityReference, endOfInput, readerChange, startEntityReference
 

Field Detail

SCANNER_STATE_END_OF_INPUT

public static final int SCANNER_STATE_END_OF_INPUT
These are the return values for the scanContent() method.

SCANNER_STATE_START_OF_PI

public static final int SCANNER_STATE_START_OF_PI
These are the return values for the scanContent() method.

SCANNER_STATE_START_OF_COMMENT

public static final int SCANNER_STATE_START_OF_COMMENT
These are the return values for the scanContent() method.

SCANNER_STATE_START_OF_CDSECT

public static final int SCANNER_STATE_START_OF_CDSECT
These are the return values for the scanContent() method.

SCANNER_STATE_START_OF_ETAG

public static final int SCANNER_STATE_START_OF_ETAG
These are the return values for the scanContent() method.

SCANNER_STATE_START_OF_ELEMENT

public static final int SCANNER_STATE_START_OF_ELEMENT
These are the return values for the scanContent() method.

SCANNER_STATE_START_OF_CHARREF

public static final int SCANNER_STATE_START_OF_CHARREF
These are the return values for the scanContent() method.

SCANNER_STATE_START_OF_ENTITYREF

public static final int SCANNER_STATE_START_OF_ENTITYREF
These are the return values for the scanContent() method.

SCANNER_STATE_END_OF_CDSECT

public static final int SCANNER_STATE_END_OF_CDSECT
These are the return values for the scanContent() method.

SCANNER_STATE_INVALID_CHAR

public static final int SCANNER_STATE_INVALID_CHAR
These are the return values for the scanContent() method.

SCANNER_STATE_MARKUP_NOT_RECOGNIZED

public static final int SCANNER_STATE_MARKUP_NOT_RECOGNIZED
These are the return values for the scanContent() method.

SCANNER_STATE_MARKUP_END_OF_INPUT

public static final int SCANNER_STATE_MARKUP_END_OF_INPUT
These are the return values for the scanContent() method.

SCANNER_STATE_REFERENCE_END_OF_INPUT

public static final int SCANNER_STATE_REFERENCE_END_OF_INPUT
These are the return values for the scanContent() method.

SCANNER_STATE_MATCHING_ETAG

public static final int SCANNER_STATE_MATCHING_ETAG
These are the return values for the scanContent() method.

XML for Java EA2