Package ua.net.maxx.dsl

Examples of ua.net.maxx.dsl.DslDictionaryParser


    dispose();
    Global.getModel().refreshModel();
  }

  protected void getWord() {
    DictionaryParser scaner = new DslDictionaryParser(Global.settings.dicPath);
    Dictionary dic = scaner.findWord(word1.getText());
    {
      if (dic.word1.equals(word1.getText())) {
        trans.setText(dic.transcript);
        wavpath.setText(dic.wavurl);
        Global.playFile(dic.wavurl);
View Full Code Here


    String file = "/home/maxx/Dictionary/dsl/En-En-Longman_Pronunciation.dsl";
    System.out.println(file);
    System.out.println(Global.settings.dicPath);

    DictionaryParser scaner = new DslDictionaryParser(Global.settings.dicPath);

    Dictionary dic;
    dic = scaner.findWord("innate");
    System.out.println(dic.wavurl);
    System.out.println(dic.transcript);
  }
View Full Code Here

TOP

Related Classes of ua.net.maxx.dsl.DslDictionaryParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.