// CSE 331, Homework 4 (Election) // Instructor-provided code; do not modify. /** * This class contains the main method to run the overall program. * * @author Marty Stepp * @version Spring 2011 v1.0 */ public final class ElectionMain { public static void main(String[] args) throws Throwable { ElectionTextUI ui = new ElectionTextUI(); ui.mainMenu(); } }