public class TestFM { public static void main(String[] args) throws Exception { FactoryMethod fm; System.out.println("Plain FactoryMethod"); fm = new FactoryMethod(); fm.dostuff(); System.out.println("IntegerFactoryMethod"); fm = new IntegerFactoryMethod(); fm.dostuff(); } // main(String[]) } // TestFM