source: liacs/TOOS2010/assignment2/src/Voter.java@ 232

Last change on this file since 232 was 206, checked in by Rick van der Zwet, 14 years ago

Some more clever java writing and hacking on checking syntax slightly properly.

File size: 240 bytes
Line 
1package nl.rickvanderzwet.toos.assignment1;
2
3public 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.