Package kanakata.analytics

Examples of kanakata.analytics.Histogram.response()


            @Override
            public void onAnswerIncorrect(Kana answer) {
                activateTabFor(kana);
                Histogram histogram = selectHistogramFor(kana);
                histogram.registerIncorrectResponse(kana);
                Response response = histogram.response(kana);
                Bin incorrect = incorrectBins.get(kana);
                incorrect.setLevel(response.getIncorrect());
            }

            @Override
View Full Code Here


            @Override
            public void onAnswerCorrect() {
                activateTabFor(kana);
                Histogram histogram = selectHistogramFor(kana);
                histogram.registerCorrectResponse(kana);
                Response response = histogram.response(kana);
                Bin correct = correctBins.get(kana);
                correct.setLevel(response.getCorrect());
            }

            @Override
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.