NVelocity Namespace Summary

Class Summary
SupportClass  
SupportClass.DateTimeFormatManager  
SupportClass.DateTimeFormatManager.DateTimeFormatHashTable  
SupportClass.TextNumberFormat  
SupportClass.Tokenizer  
SupportClass.TransactionManager  
SupportClass.TransactionManager.ConnectionHashTable  
Template This class is used for controlling all template operations. This class uses a parser created by JavaCC to create an AST that is subsequently traversed by a Visitor. * Template template = Velocity.getTemplate("test.wm"); Context context = new VelocityContext(); * context.put("foo", "bar"); context.put("customer", new Customer()); * template.merge(context, writer); *
VelocityContext General purpose implemention of the application Context interface for general application use. This class should be used in place of the original Context class.