de.susebox.jtopas |
|
Java Source File Name | Type | Comment |
AbstractTokenizer.java | Class |
Base class for
Tokenizer implementations. |
AbstractTokenizerProperties.java | Class |
The class AbstractTokenizerProperties provides the skeleton for
implementations of the
TokenizerProperties interface. |
CharArraySource.java | Class | Implementation of the
TokenizerSource and its extension
CharSequenceTokenizerSource for character arrays. |
CharSequenceTokenizerSource.java | Interface |
Extension of the
TokenizerSource interface and the
java.lang.CharSequence interface that was introduced in J2SE 1.4. |
Flags.java | Interface | The interface defines flags that are used by various classes during tokenizing.
A flag can be set in three ways:
|
JTopasTestSuite.java | Class |
This is the test suite for the java package tree. |
ReaderSource.java | Class |
This implementation of the
TokenizerSource interface uses the JDK
java.io.Reader class to realize the requested functionality. |
StandardTokenizer.java | Class |
This is the mainstream
Tokenizer . |
StandardTokenizerProperties.java | Class |
The class StandardTokenizerProperties provides a simple implementation
of the
TokenizerProperties interface for use in most situations.
Note that this class takes advantage of JTopas features that use Java 1.4 or
higher. |
StringSource.java | Class | Implementation of the
TokenizerSource and its extension
CharSequenceTokenizerSource for strings. |
TestDifficultSituations.java | Class |
The class contains a number of test cases that are supposed to be difficult
to handle for a
Tokenizer , e.g. |
TestEmbeddedTokenizer.java | Class |
This unit test checks the embedded-tokenizer feature of the class
StandardTokenizer .
With this technique it is possible to parse multipart documents like HTML with
embedded CSS and script parts, Java and javadoc comments etc.
This test suite works with a test configuration file. |
TestLargeSource.java | Class |
This test suite generates a huge file with a common mix of comments, special
sequences, keywords, separators etc. |
TestMultithreadTokenizer.java | Class |
This class tests
Tokenizer implementations in a multithreaded environment. |
TestMultithreadTokenizerProperties.java | Class |
This class tests the implementations of
TokenizerProperties . |
TestPatternMatching.java | Class |
The class contains a number of test cases related to the pattern matching
facility in a
Tokenizer . |
TestStandardTokenizer.java | Class |
This test suite works with a test configuration file. |
TestTextAccess.java | Class |
This class tests the input data access of a
Tokenizer and the setting
of the read position. |
TestTokenizerCleanup.java | Class |
This test suite checks memory usage, registration end other things related
to cleanup operations of a
Tokenizer . |
TestTokenizerFlags.java | Class |
This class tests the behaviour of a
Tokenizer regarding the flags set
in the backing
TokenizerProperties and the registered
TokenizerProperty objects. |
TestTokenizerProperties.java | Class |
This class tests the implementations of
TokenizerProperties . |
TestTokenizerSource.java | Class |
The class contains a number of test cases that are supposed to be difficult
to handle for a
Tokenizer , e.g. |
Token.java | Class |
Instances of this class are created by the classes implementing the
Tokenizer interface. |
Tokenizer.java | Interface |
The interface Tokenizer contains setup methods, parse operations
and other getter and setter methods for a tokenizer. |
TokenizerException.java | Class |
Wrapper exception for all the problems that may occur while parsing. |
TokenizerProperties.java | Interface |
The interface TokenizerProperties declares constants and methods
to maintain the characteristics of a
Tokenizer , e. |
TokenizerProperty.java | Class |
This class is mainly used by
TokenizerProperties implementations to
return
java.util.Iterator objects of their various properties (keywords,
special sequences etc.). |
TokenizerPropertyEvent.java | Class |
The class TokenizerPropertyEvent describes changes in
TokenizerProperties objects. |
TokenizerPropertyListener.java | Interface |
The interface TokenizerPropertyListener is implemented by classes
that are interested in changes in
TokenizerProperties objects. |
TokenizerSource.java | Interface |
This interface describes the data source for a
Tokenizer . |