Package ua.net.maxx.langtrainer

Examples of ua.net.maxx.langtrainer.Dictionary


                  String wav = nextLine.substring(sS + 3, sE);
                  String trans = nextLine.substring(tS + 14, tE);
                  trans = trans.replace("[sup]", "");
                  trans = trans.replace("[/sup]", "");
                  return new Dictionary(word, "", trans, wav);
                }
              }
            }
            return new Dictionary();
          }
        }
      }

    } catch (IOException e) {

    }
    return new Dictionary();

  }
View Full Code Here


    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.langtrainer.Dictionary

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.