package nl.rickvanderzwet.toos.assignment1; public class Voter { public Voter() { fvote = null; } public Voter(Boolean vote) { fvote = vote; } public Boolean getVote() { return fvote; } public Boolean fvote; }