public class GreeterFactory2 
{    
    public static Greeter make(String language)
        throws ClassNotFoundException, 
               InstantiationException, 
               IllegalAccessException
    {
        return (Greeter) Class.forName(language).newInstance();
    }
}
