source:
liacs/TOOS2010/assignment1/src/Voter.java
Last change on this file was 206, checked in by , 14 years ago | |
---|---|
File size: 240 bytes |
Line | |
---|---|
1 | package nl.rickvanderzwet.toos.assignment1; |
2 | |
3 | public class Voter { |
4 | public Voter() { |
5 | fvote = null; |
6 | } |
7 | public Voter(Boolean vote) { |
8 | fvote = vote; |
9 | } |
10 | |
11 | public Boolean getVote() { |
12 | return fvote; |
13 | } |
14 | public Boolean fvote; |
15 | } |
Note:
See TracBrowser
for help on using the repository browser.