diff options
| author | Krasimir Angelov <kr.angelov@gmail.com> | 2017-08-30 08:08:19 +0200 |
|---|---|---|
| committer | Krasimir Angelov <kr.angelov@gmail.com> | 2017-08-30 08:08:19 +0200 |
| commit | 3e9de6ffbbe77f0ab41b62a7c7001a554f1900cf (patch) | |
| tree | 985f147d2a4ed4caef0c9261dd3f75b2473ecfa8 /doc/runtime-api.html | |
| parent | bee61fe4aa2d17ba012bab16c685ee280331fa3c (diff) | |
added fullFormLexicon in Java
Diffstat (limited to 'doc/runtime-api.html')
| -rw-r--r-- | doc/runtime-api.html | 2 |
1 files changed, 1 insertions, 1 deletions
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] </pre> <pre class="java"> -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()); } |
