| Interface | Description |
|---|---|
| Analyzer |
An Analyzer is a routine for analyzing text tokens and writing
a report to file.
|
| Class | Description |
|---|---|
| AnalyzeFile |
Analyzes text files by tokenizing and passing to specific analyzers.
|
| AnalyzerDriver |
Launches the Analyzer applicaton.
|
| BigWordAnalyzer |
Processes individual text tokens and stores a list of unique values
where word length is greater than or equal to minimum word length.
|
| KeywordAnalyzer |
Processes individual text tokens.
|
| SummaryReport |
Processes individual text tokens and tallies total tokens in file.
|
| TokenCountAnalyzer |
Processes individual text tokens and tallies the count of each unique token.
|
| TokenSizeAnalyzer |
Processes individual text tokens and tallies the number of tokens for each
distinct token length.
|
| UniqueTokenAnalyzer |
Processes individual text tokens and stores a list of unique values.
|