throws Exception
{
VelocityContext vc = new VelocityContext();
// context object with overloaded methods with number arguments
vc.put("Test",new NumberMethods());
// numbers for context
vc.put("AByte",new Byte("10"));
vc.put("AShort",new Short("10"));
vc.put("AInteger",new Integer(10));