Uses of Class
convert.xml.tok.InvalidTokenException

Packages that use InvalidTokenException
convert.xml.tok   
 

Uses of InvalidTokenException in convert.xml.tok
 

Methods in convert.xml.tok that throw InvalidTokenException
static java.lang.String Tokenizer.getPublicId(char[] buf, int off, int end)
          Checks that a literal contained in the specified char subarray is a legal public identifier and returns a string with the normalized content of the public id.
static int Tokenizer.skipIgnoreSect(char[] buf, int off, int end)
          Skips over an ignored conditional section.
static int Tokenizer.tokenizeAttributeValue(char[] buf, int off, int end, Token token)
          Scans the first token of a char subarrary that contains part of literal attribute value.
static int Tokenizer.tokenizeCdataSection(char[] buf, int off, int end, Token token)
          Scans the first token of a char subarrary that starts with the content of a CDATA section.
static int Tokenizer.tokenizeContent(char[] buf, int off, int end, ContentToken token)
          Scans the first token of a char subarrary that contains content.
static int Tokenizer.tokenizeEntityValue(char[] buf, int off, int end, Token token)
          Scans the first token of a char subarrary that contains part of literal entity value.
static int Tokenizer.tokenizeProlog(char[] buf, int off, int end, Token token)
          Scans the first token of a char subarray that contains part of a prolog.
 

Constructors in convert.xml.tok that throw InvalidTokenException
TextDecl(char[] buf, int off, int end)
          Creates a TextDecl from the specified char subarray.