Package synalp.commons.input

Examples of synalp.commons.input.Lexem


   * @param sentence
   */
  public MorphRealization(String sentence)
  {
    for(String lexem : sentence.trim().split(" "))
      add(new Lexem(lexem));
  }
View Full Code Here

TOP

Related Classes of synalp.commons.input.Lexem

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.