1 package civitas.common.election;
2
3 public class GetElectionAbandonmentReporter {
4 public String apply(final ElectionAbandonment that) {
5 if (that.isTabulationTeller()) {
6 return "tabulation teller " + that.tellerIndex();
7 }
8 return "unknown entity";
9 }
10 }