System.out.println("Known commands: "); Enumeration names = commands.elements(); while (names.hasMoreElements()) System.out.println(((Command) names.nextElement()).getClass().getName()); System.out.println();
System.out.print("Usage: commands");