Last change
on this file since 207 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
|
Rev | Line | |
---|
[205] | 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 |
|
---|
[206] | 11 | public Boolean getVote() {
|
---|
[205] | 12 | return fvote;
|
---|
| 13 | }
|
---|
| 14 | public Boolean fvote;
|
---|
| 15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.