try {
clazz = Class.forName(className);
} catch (ClassNotFoundException e) {
throw new EvalException("Can't find class '" + className + "'");
}
ClassBindingImpl classBinding = ClassBindingImpl.get(clazz);
for(Symbol method : methods) {
namespace.getNamespaceEnvironment().setVariable(method, classBinding.getStaticMember(method));
}
}