public OldCrossReferenceTableParser(ILog log, IDictionaryParser dictionaryParser, IBaseParser baseParser)
 {
     this.log = log;
     this.dictionaryParser = dictionaryParser;
     this.baseParser       = baseParser;
 }
Esempio n. 2
0
 public PhraseProvider(IDictionaryParser fileParser, string languageFilePath)
 {
     this.phrases          = new Dictionary <Phrase, string>();
     this.fileParser       = fileParser;
     this.languageFilePath = languageFilePath;
 }
Esempio n. 3
0
 public FileSettingsProvider(IDictionaryParser parser, string settingsFilePath)
 {
     this.fileParser       = parser;
     this.settingsFilePath = settingsFilePath;
 }
Esempio n. 4
0
 public Dictionary(IDictionaryParser dictionaryParser)
 {
     _translations = dictionaryParser.GetTranslations();
     Name          = dictionaryParser.GetName();
 }