Package com.salas.bb.core

Examples of com.salas.bb.core.ScoresCalculator


     *
     * @return tab.
     */
    private Component createBlogStarzTab()
    {
        ScoresCalculator calc = GlobalModel.SINGLETON.getScoreCalculator();
        double activity = calc.calcActivity(feed);
        double inlinks = calc.calcInlinksScore(feed);
        double views = calc.calcFeedViewsScore(feed);
        double clickthroughs = calc.calcClickthroughsScore(feed);
        blogStarzScore = calc.calcBlogStarzScore(feed);
        rating = feed.getRating();

        StarzPreferences prefs = GlobalModel.SINGLETON.getStarzPreferences();
        int activityWeight = prefs.getActivityWeight();
        int inlinksWeight = prefs.getInlinksWeight();
View Full Code Here

TOP

Related Classes of com.salas.bb.core.ScoresCalculator

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.