Examples of findRecommendations()


Examples of org.corrib.s3b.recommendations.plugin.RecommendationPlugin.findRecommendations()

        int weight = urpTable[i].getWeight();

        Set<Recommendation> limitedResult = new TreeSet<Recommendation>();

        RecommendationPlugin type = RecommendationTemplates.getInstance().getPlugin(name);
        SortedSet<Recommendation> resultsArray = type.findRecommendations(S3BRepository.getInstance().getModel().createURI(resource));
       
        if(resultsArray != null) {       
          Set<Recommendation> tmp = new TreeSet<Recommendation>(resultsArray);

          while(tmp.size()> limit) {
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.