static Class getClass(String name) { try { return Class.forName(name); } catch (ClassNotFoundException e) { return null; } }