/** * This class has a main method that is used * to run the TaxHelper code * * You can change the type of the variable h to be either: * - TaxHelper * - BetterTaxHelper * - BestTaxHelper * * Each of these classes implements the same flowchart so * you shouldn't notice a difference when you change the type. */ public class TaxHelperController{ public static void main(String[] args){ TaxHelper h = new TaxHelper(); h.determineFilingStatus(); } }