Package com.ryp.bo

Examples of com.ryp.bo.Rating


        RateYourPlaceService service = getRYPService();

        Place place = getIgeliPlace();

        String ratingComment = "somecomment";
        Rating rating = new Rating();
        rating.setComment(ratingComment);
        rating.setRate(Rate.R10);
       
        service.ratePlace(place, rating);
       
        TotalRating totalRating = service.getTotalRating(place);
       
View Full Code Here


        RateYourPlaceService service = getRYPService();

        Place place = getIgeliPlace();

        String ratingComment = "somecomment";
        Rating rating = new Rating();
        rating.setComment(ratingComment);
        Rate r1 = Rate.R10;
        rating.setRate(r1);

        service.ratePlace(place, rating);

        rating = new Rating();
        rating.setComment(ratingComment);
        Rate r2 = Rate.R5;
        rating.setRate(r2);

        service.ratePlace(place, rating);

        rating = new Rating();
        rating.setComment(ratingComment);
        Rate r3 = Rate.R3;
        rating.setRate(r3);
       
        service.ratePlace(place, rating);

        int avgRate = ((r1.getValue() + r2.getValue() + r3.getValue()) / 3);
        Rate totalRate = Rate.valueOf(avgRate);
View Full Code Here

TOP

Related Classes of com.ryp.bo.Rating

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.