Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public void giveFeedback(Reply reply) {
  2. PostType postType = reply.getType();
  3. if (postType == PostType.HELPFUL) {
  4. reply.addRating(new Rating("Winner"));
  5. } else {
  6. reply.addRating(new Rating("Agree"));
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement