public class MyApplication1 {
     void displayStuff (StatusPrinter s) {
                s.printStatus();
    }   

    public static void main (String args[]) {
                Accumulator a1 = new Accumulator();
                Counter     c1 = new Counter();
                MyApplication.displayStuff (a1);
                MyApplication.displayStuff (c1);
        }
}
