Uses of Class
ipipan.spejd.util.Config

Packages that use Config
ipipan.spejd Root package for Shallow Parsing And Disambiguation Engine. 
ipipan.spejd.actions Provides classes representing actions (predicates) that can be executed (evaluated) upon finding a match. 
ipipan.spejd.entities Provides classes representing syntactic entities, for example words or syntactic groups. 
ipipan.spejd.processing   
ipipan.spejd.readers   
ipipan.spejd.ruleparser Provides basic classes for parsing SPADE rules. 
ipipan.spejd.rules Classes for representing and applying rules, as well as a class for reading XML input files to be parsed. 
ipipan.spejd.util Provides utility classes and tools, common for different program modules. 
 

Uses of Config in ipipan.spejd
 

Constructors in ipipan.spejd with parameters of type Config
Parser(java.lang.String path, Config conf)
           
 

Uses of Config in ipipan.spejd.actions
 

Constructors in ipipan.spejd.actions with parameters of type Config
Action(Config conf)
           
ActionParser(java.io.BufferedReader in, Config conf)
           
GroupAction(java.lang.String type, int synh, int semh, Config conf)
           
OrthCond(int segno, java.lang.String regex, Config conf)
           
WordAction(WordActionArg[] args, Config conf)
           
WordActionArg(int token, java.lang.String tag, WordBasePart[] base, Config conf)
           
 

Uses of Config in ipipan.spejd.entities
 

Fields in ipipan.spejd.entities declared as Config
protected  Config Interpretation.conf
           
 

Constructors in ipipan.spejd.entities with parameters of type Config
Group(java.lang.String type, Entity synh, Entity semh, Entity[] match, Config conf)
           
Interpretation(Interpretation interp, java.lang.String modifier, Config conf)
          Create an interpretation by modyfying attributes of an existing one.
Interpretation(Interpretation interp, java.lang.String modifier, java.lang.String base, Config conf)
          Create an interpretation by modifying attributes of an existing one.
Interpretation(java.lang.String s, boolean disamb, Config conf)
          Create an interpretation with the specified data and preserving previous disambiguation value.
Interpretation(java.lang.String s, Config conf)
          Create an interpretation with the specified data.
NoSpace(Config conf)
           
Segment(Config conf)
           
Segment(java.lang.String id, java.lang.String orth, Interpretation[] interp, Config conf)
           
SentenceBorder(char type, Config conf)
           
Word(Interpretation[] interp, Entity[] content, Config conf)
           
 

Uses of Config in ipipan.spejd.processing
 

Fields in ipipan.spejd.processing declared as Config
 Config ProcessingThread.conf
           
 

Constructors in ipipan.spejd.processing with parameters of type Config
ProcessingThread(java.lang.Runnable r, Stempelator anal, LexDictionary dict, RuleSet rules, Sentence chunk, Config conf, java.lang.Object lock)
           
ProcessingThreadsFactory(java.lang.Object lock, Config conf)
           
SpejdManagingProcess(java.util.concurrent.LinkedBlockingQueue<java.io.File> FilesToBeProcessed, Config conf)
           
 

Uses of Config in ipipan.spejd.readers
 

Methods in ipipan.spejd.readers with parameters of type Config
 Reader ReaderFactory.getReader(java.io.File path, Config conf, Stempelator stemmer)
          Get the appropriate reader for this path.
 

Constructors in ipipan.spejd.readers with parameters of type Config
InputFileFilter(Config c)
           
MorphReader(java.io.File path, Config conf)
           
PlainTextReader(Config conf, Stempelator stemmer)
           
ReaderFactory(Config conf)
           
WorkbenchReader(java.io.File path, Config conf)
           
 

Uses of Config in ipipan.spejd.ruleparser
 

Fields in ipipan.spejd.ruleparser declared as Config
protected  Config MatchParser.conf
           
 

Constructors in ipipan.spejd.ruleparser with parameters of type Config
AltRequirement(Config conf)
           
EntityRequirement(Config conf)
           
GroupRequirement(Config conf)
           
MatchParser(java.io.BufferedReader in, Config conf)
           
MatchParser(Config conf)
           
SequenceRequirement(Config conf)
           
SpecialRequirement(char type, Config conf)
           
TokenRequirement(Config conf)
           
 

Uses of Config in ipipan.spejd.rules
 

Methods in ipipan.spejd.rules with parameters of type Config
 void Sentence.openFile(java.io.File path, Config conf)
           
 

Constructors in ipipan.spejd.rules with parameters of type Config
AbstractRule(java.lang.String title, Action[] actions, Config conf)
           
Gazetteer(int order, int type, Config conf)
           
GazetteerEntry(java.lang.String key, Action[] actions, boolean fromFile, Config conf)
           
LexDictionary(java.lang.String filename, Config conf)
           
Rule(java.lang.String title, java.lang.String[] left, java.lang.String[] match, java.lang.String[] right, Action[] actions, Config conf)
           
RuleParser(java.io.BufferedReader in, Config conf)
           
RuleSet(Config conf)
           
Sentence(Config conf, LexDictionary dict, Stempelator stemmer)
           
 

Uses of Config in ipipan.spejd.util
 

Constructors in ipipan.spejd.util with parameters of type Config
Util(Config conf)