From 3e9de6ffbbe77f0ab41b62a7c7001a554f1900cf Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Wed, 30 Aug 2017 08:08:19 +0200 Subject: added fullFormLexicon in Java --- doc/runtime-api.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/runtime-api.html') diff --git a/doc/runtime-api.html b/doc/runtime-api.html index 9844ff89e..d8d34d38e 100644 --- a/doc/runtime-api.html +++ b/doc/runtime-api.html @@ -775,7 +775,7 @@ word form with its possible analyses: Prelude PGF2> mapM_ print [(form,lemma,analysis,prob) | (form,analyses) <- fullFormLexicon eng, (lemma,analysis,prob) <- analyses]
-for (FullFormEntry entry in eng.fullFormLexicon()) { ///// TODO
+for (FullFormEntry entry : eng.fullFormLexicon()) {
 	for (MorphoAnalysis analysis : entry.getAnalyses()) {
 		System.out.println(entry.getForm()+" "+analysis.getProb()+" "+analysis.getLemma()+" "+analysis.getField());
 	}
-- 
cgit v1.2.3