Package | Description |
---|---|
jgloss.dictionary |
Dictionary interfaces and implementations.
|
jgloss.dictionary.attribute |
Dictionary attribute classes.
|
jgloss.dictionary.filebased | |
jgloss.parser |
Backend for parsing Japanese text, searching for readings and translations of words.
|
Modifier and Type | Interface and Description |
---|---|
interface |
DictionaryImplementation<T extends Dictionary>
Interface which is used to match descriptors to
Dictionary implementations. |
Modifier and Type | Interface and Description |
---|---|
interface |
IndexedDictionary
Interface for dictionaries which need an index to operate.
|
Modifier and Type | Class and Description |
---|---|
class |
KanjiDic
Dictionary implementation for KANJIDIC-style dictionary files.
|
Modifier and Type | Field and Description |
---|---|
protected Dictionary |
MalformedEntryException.dictionary |
protected Dictionary |
BaseEntry.dictionary |
protected Dictionary |
BaseEntry.BaseEntryRef.dictionary |
Modifier and Type | Method and Description |
---|---|
static <T extends Dictionary> |
DictionaryFactory.registerImplementation(DictionaryImplementation<T> imp)
Registers an implementation of the
Dictionary interface with the
DictionaryFactory . |
Modifier and Type | Method and Description |
---|---|
static Dictionary |
DictionaryFactory.createDictionary(String descriptor)
Creates a dictionary instance based on the descriptor.
|
Dictionary |
BaseEntry.getDictionary() |
Dictionary |
DictionaryEntry.getDictionary()
Returns the dictionary from which this entry originated.
|
Dictionary |
DictionaryWrapper.getWrappedDictionary() |
static Dictionary |
DictionaryFactory.synchronizedDictionary(Dictionary dictionary)
Returns a synchronized (thread-safe) dictionary wrapped by the specified
dictionary.
|
static Dictionary |
DictionaryUtils.unwrap(DictionaryWrapper wrapper)
Returns the dictionary at the root of the wrapper containment hierarchy.
|
Modifier and Type | Method and Description |
---|---|
static Dictionary |
DictionaryFactory.synchronizedDictionary(Dictionary dictionary)
Returns a synchronized (thread-safe) dictionary wrapped by the specified
dictionary.
|
Constructor and Description |
---|
BaseEntry(int _entryMarker,
List<List<String>> _translations,
AttributeSet _generalA,
AttributeSet _wordA,
AttributeSet _readingA,
AttributeSet _translationA,
List<AttributeSet> _translationRomA,
Dictionary _dictionary) |
MalformedEntryException(Dictionary _dictionary,
String _dictionaryEntry) |
MalformedEntryException(Dictionary _dictionary,
String _dictionaryEntry,
Throwable _rootCause) |
MultiWordEntry(int _entryMarker,
String[] _words,
String[] _readings,
List<List<String>> _translations,
AttributeSet _generalA,
AttributeSet _wordA,
AttributeSet[] _wordsA,
AttributeSet _readingA,
AttributeSet[] _readingsA,
AttributeSet _translationA,
List<AttributeSet> _translationRomA,
Dictionary _dictionary) |
SingleWordEntry(int _entryMarker,
String _word,
String _reading,
List<List<String>> _translations,
AttributeSet _generalA,
AttributeSet _wordA,
AttributeSet _readingA,
AttributeSet _translationA,
List<AttributeSet> _translationRomA,
Dictionary _dictionary) |
Modifier and Type | Method and Description |
---|---|
Dictionary |
SearchReference.getDictionary() |
Constructor and Description |
---|
SearchReference(String title,
Dictionary dictionary,
SearchMode searchMode,
String reference,
SearchFieldSelection searchFieldSelection) |
Modifier and Type | Class and Description |
---|---|
class |
EDict
Dictionary implementation for dictionaries in EDICT format
based on
FileBasedDictionary . |
class |
FileBasedDictionary
Base class for dictionaries stored in a local file with separate index file.
|
class |
WadokuJT
Implementation for dictionaries in WadokuJT.txt format.
|
Constructor and Description |
---|
KanjiParser(Dictionary[] dictionaries,
Set<String> exclusions)
Creates a new parser which will use the given dictionaries, use no reading annotation
delimiters and will cache dictionary lookups and not ignore newlines.
|
KanjiParser(Dictionary[] dictionaries,
Set<String> exclusions,
boolean firstOccurrenceOnly)
Creates a new parser which will use the given dictionaries, use no reading annotation
delimiters and will cache dictionary lookups and not ignore newlines.
|
KanjiParser(Dictionary[] dictionaries,
Set<String> exclusions,
boolean cacheLookups,
boolean ignoreNewlines,
boolean firstOccurrenceOnly)
Creates a new parser which will use the given dictionaries.
|
TextAnnotationCompleter(Dictionary[] _dictionaries) |
Copyright © 2001-2013 the JGloss developers. All Rights Reserved.