75767778798081
_choiceId = choiceId; _voteDate = voteDate; } public PollsVotePK getPrimaryKey() { return new PollsVotePK(_questionId, _userId); }
164165166167168169170171172
if (obj == null) { return -1; } PollsVote pollsVote = (PollsVote)obj; PollsVotePK pk = pollsVote.getPrimaryKey(); return getPrimaryKey().compareTo(pk); }
183184185186187188189190191192193
} catch (ClassCastException cce) { return false; } PollsVotePK pk = pollsVote.getPrimaryKey(); if (getPrimaryKey().equals(pk)) { return true; } else {