CS231 lecture notes, Fall 1999 Week 7, Friday Development plan for Checker.java (complete with errors and how I found them) Step One -------- public static void parseChar (char c) { switch (c) { case '{': case '(': case '[': System.out.print (c); break; default: } } public static void parseLine (String line) { for (int i = 0; i