@Override
public IFlow onYes() {
if (M.getHaveVoted()) {
String ptext = "You can only vote once per phone call.";
return new FlowList(new PromptFlow("AlreadyVoted", ptext), App.BRANCH_MAIN_MENU);
}
recordVote();
String ptext = "Your vote has been recorded.";
return new FlowList(new PromptFlow("SayVoted", ptext), App.BRANCH_MAIN_MENU);
}