Package edu.umd.cs.findbugs
Class Tokenizer
- java.lang.Object
-
- edu.umd.cs.findbugs.Tokenizer
-
public class Tokenizer extends java.lang.Object
A simple tokenizer for Java source text. This is not intended to be a compliant lexer; instead, it is for quick and dirty scanning.- Author:
- David Hovemeyer
- See Also:
Token
-
-
Constructor Summary
Constructors Constructor Description Tokenizer(java.io.Reader reader)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Token
next()
Get the next Token in the stream.
-
-
-
Method Detail
-
next
public Token next() throws java.io.IOException
Get the next Token in the stream.- Returns:
- the Token
- Throws:
java.io.IOException
-
-