Package edu.harvard.wcfia.yoshikoder.reporting

Examples of edu.harvard.wcfia.yoshikoder.reporting.DictionaryFrequencyReport


           
            // FIXME use efmMap in the report, not the most recent one!
           
            YKDocument fake =
                    YKDocumentFactory.createDummyDocument("Concordance", "none", "UTF-8");
                DictionaryFrequencyReport reportcatsonly =
                    new DictionaryFrequencyReport("Concordance Report",
                            catnode.getName() + " applied to current concordance",
                            yoshikoder.getDictionary().getName(),
                            fake, efm, false);
                DictionaryFrequencyReport reportcatsandpats =
                    new DictionaryFrequencyReport("Concordance Report",
                        catnode.getName() + "applied to current concordance",
                            yoshikoder.getDictionary().getName(),
                            fake, efm, true);
                dia = new YKDictionaryReportDialog(yoshikoder, reportcatsonly, reportcatsandpats, onlyShowCats);
            }
View Full Code Here


                    tcache.putTokenList(doc, tl);
                }
               
                EntryFrequencyMap efm = new EntryFrequencyMap(catnode, tl);
               
                DictionaryFrequencyReport catsAndPats =
                    new DictionaryFrequencyReport("Dictionary Entry Frequencies",
                            "Frequencies of each dictionary entry in " + doc.getTitle(),
                            yoshikoder.getDictionary().getName(),
                            doc, efm, true);
                DictionaryFrequencyReport catsOnly =
                    new DictionaryFrequencyReport("Dictionary Entry Frequencies",
                            "Frequencies of each dictionary entry in " + doc.getTitle(),
                            yoshikoder.getDictionary().getName(),
                            doc, efm, false);
               
                dia = new YKDictionaryReportDialog(yoshikoder, catsOnly, catsAndPats, onlyShowCats);
View Full Code Here

TOP

Related Classes of edu.harvard.wcfia.yoshikoder.reporting.DictionaryFrequencyReport

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.