Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. import pl.sgjp.morfeusz.*;
  2. import java.util.*;
  3.  
  4. public class MorfExample {
  5.  
  6. public static void main(String[] args) throws InterruptedException {
  7.  
  8. Morfeusz morfeusz = Morfeusz.createInstance();
  9.  
  10. List<MorphInterpretation> gen_interps = morfeusz.generate("kot");
  11. List<MorphInterpretation> an_interps = morfeusz.analyseAsList("kociętom");
  12.  
  13. System.out.println(gen_interps);
  14. System.out.println(an_interps);
  15.  
  16. System.out.println("kuniec");
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement