FileDocCategorySizeDatePackage
Input.javaAPI DocphoneME MR2 API (J2ME)2082Wed May 02 18:00:34 BST 2007com.sun.ukit.jaxp

Input

public class Input extends Object
A parsed entity input state. This class represents a parsed entity input state. The parser uses an instance of this class to manage input.

Fields Summary
public String
pubid
The entity public identifier or null.
public String
sysid
The entity systen identifier or null.
public Reader
src
The entity reader.
public char[]
chars
The character buffer.
public int
chLen
The length of the character buffer.
public int
chIdx
The index of the next character to read.
public Input
next
The next input in a chain.
Constructors Summary
public Input(int buffsize)
Constructor.

param
buffsize The input buffer size.

		chars = new char[buffsize];
		chLen = chars.length;
	
public Input(char[] buff)
Constructor.

param
buff The input buffer.

		chars = buff;
		chLen = chars.length;
	
public Input()
Constructor.

	
Methods Summary