org.cyberneko.html
Class HTMLScanner.CurrentEntity

java.lang.Object
  extended byorg.cyberneko.html.HTMLScanner.CurrentEntity
Enclosing class:
HTMLScanner

public static class HTMLScanner.CurrentEntity
extends Object

Current entity.

Author:
Andy Clark

Field Summary
 String baseSystemId
          Base system identifier.
 char[] buffer
          Character buffer.
 int columnNumber
          Column number.
 String encoding
          Encoding.
 String expandedSystemId
          Expanded system identifier.
 int length
          Length of characters read into character buffer.
 int lineNumber
          Line number.
 String literalSystemId
          Literal system identifier.
 int offset
          Offset into character buffer.
 String publicId
          Public identifier.
 Reader stream
          Character stream.
 
Constructor Summary
HTMLScanner.CurrentEntity(Reader stream, String encoding, String publicId, String baseSystemId, String literalSystemId, String expandedSystemId)
          Constructs an entity from the specified stream.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

stream

public Reader stream
Character stream.


encoding

public String encoding
Encoding.


publicId

public String publicId
Public identifier.


baseSystemId

public String baseSystemId
Base system identifier.


literalSystemId

public String literalSystemId
Literal system identifier.


expandedSystemId

public String expandedSystemId
Expanded system identifier.


lineNumber

public int lineNumber
Line number.


columnNumber

public int columnNumber
Column number.


buffer

public char[] buffer
Character buffer.


offset

public int offset
Offset into character buffer.


length

public int length
Length of characters read into character buffer.

Constructor Detail

HTMLScanner.CurrentEntity

public HTMLScanner.CurrentEntity(Reader stream,
                                 String encoding,
                                 String publicId,
                                 String baseSystemId,
                                 String literalSystemId,
                                 String expandedSystemId)
Constructs an entity from the specified stream.



(C) Copyright 2002-2004, Andy Clark. All rights reserved.