Uses of Interface
scone.util.tokenstream.Token

Packages that use Token
scone.netobjects This package provides objects which represent real objects from the internet and the WWW. 
scone.util.tokenstream This package provides means for convenient tokenizing of documents. 
 

Uses of Token in scone.netobjects
 

Classes in scone.netobjects that implement Token
 class LinkToken
          a HtmlToken for a link
 

Methods in scone.netobjects that return Token
 Token LinkToken.getClone()
           
 

Uses of Token in scone.util.tokenstream
 

Classes in scone.util.tokenstream that implement Token
 class HtmlCommentToken
          an HTML comment.
 class HtmlScriptToken
          an HTML script element.
 class HtmlStyleToken
          an HTML style element.
 class HtmlTagToken
          an HTML tag.
 class HtmlTextToken
          HTML text.
 

Methods in scone.util.tokenstream that return Token
 Token Token.getClone()
          returns a clone of the token.
 Token HtmlTextToken.getClone()
          returns a clone of this token
 Token HtmlTagToken.getClone()
          returns a clone of this Token
 Token HtmlStyleToken.getClone()
          returns a clone of this Token
 Token HtmlScriptToken.getClone()
          returns a clone of this Token
 Token HtmlCommentToken.getClone()
          returns a clone of this token
 Token Tokenizer.nextToken()
          extracts the next Token from the Reader.
 Token HtmlTokenizer.nextToken()
          returns the next Token or null, if there are no more Tokens
 Token TokenInputStreamTokenizerImpl.read()
          Read a Token from the input stream.
 Token TokenInputStreamBufferImpl.read()
          Read a Token from the input stream.
abstract  Token TokenInputStream.read()
          Read a Token from the input stream.
 

Methods in scone.util.tokenstream with parameters of type Token
 void TokenBuffer.CircularTokenStore.appendTokens(Token[] src, int offset, int length)
           
 void TokenBuffer.CircularTokenStore.peekTokens(int backwardsOffset, Token[] dest, int destOffset, int length, boolean mustClone)
           
 int TokenInputStreamTokenizerImpl.read(Token[] buf)
          Read Tokens from the input stream filling the specified Token array.
 int TokenInputStreamBufferImpl.read(Token[] buf)
          Read Tokens from the input stream filling the specified Token array.
abstract  int TokenInputStream.read(Token[] buf)
          Read Tokens from the input stream filling the specified Token array.
 int TokenInputStreamTokenizerImpl.read(Token[] buf, int offset, int length)
          Read multiple Tokens from the input stream.
 int TokenInputStreamBufferImpl.read(Token[] buf, int offset, int length)
          Read multiple Tokens from the input stream.
abstract  int TokenInputStream.read(Token[] buf, int offset, int length)
          Read multiple Tokens from the input stream.
 int TokenBuffer.read(Token[] buf, int offset, int size, java.lang.Object context, long timeout, boolean peek)
           
 void TokenOutputStream.write(Token token)
          Write a Token to the stream.
 void DummyTokenOutputStream.write(Token token)
          does nothing
 void TokenOutputStream.write(Token[] buf)
          Write a Token array to the stream.
 void DummyTokenOutputStream.write(Token[] buf)
          does nothing
 void TokenOutputStream.write(Token[] buf, int offset, int length)
          Write a portion of the passed Token buffer array.
 int TokenBuffer.write(Token[] buf, int offset, int size)
           
 void DummyTokenOutputStream.write(Token[] buf, int offset, int length)
          does nothing
 

Constructors in scone.util.tokenstream with parameters of type Token
TokenBuffer.CircularTokenStore(Token[] source)
           
TokenBuffer(Token[] source)