1 54 55 package org.apache.jetspeed.portal.portlets.util.poll; 56 57 import org.apache.turbine.om.*; 58 59 60 66 public class Answer extends BaseObject { 67 68 private String title = ""; 69 private int voteCount = 0; 70 private int id = 0; 71 72 78 public Answer( String title, 79 int id ) { 80 this.title = title; 81 this.id = id; 82 } 83 84 90 public void setVoteCount( int voteCount ) { 91 this.voteCount = voteCount; 92 } 93 94 100 public int getVoteCount() { 101 return this.voteCount; 102 } 103 104 110 public String getTitle() { 111 return this.title; 112 } 113 114 120 public int getID() { 121 return this.id; 122 } 123 124 130 public void castVote() { 131 ++this.voteCount; 132 } 133 134 } 135 136 | Popular Tags |