Uses of Interface
org.apache.velocity.context.InternalHousekeepingContext
-
Packages that use InternalHousekeepingContext Package Description org.apache.velocity org.apache.velocity.context org.apache.velocity.example -
-
Uses of InternalHousekeepingContext in org.apache.velocity
Classes in org.apache.velocity that implement InternalHousekeepingContext Modifier and Type Class Description class
VelocityContext
General purpose implementation of the application Context interface for general application use. -
Uses of InternalHousekeepingContext in org.apache.velocity.context
Subinterfaces of InternalHousekeepingContext in org.apache.velocity.context Modifier and Type Interface Description interface
InternalContextAdapter
interface to bring all necessary internal and user contexts together.Classes in org.apache.velocity.context that implement InternalHousekeepingContext Modifier and Type Class Description class
AbstractContext
This class is the abstract base class for all conventional Velocity Context implementations.class
ChainedInternalContextAdapter
This is an abstract internal-use-only context implementation to be used as a subclass for other internal-use-only contexts that wrap other internal-use-only contexts.class
InternalContextAdapterImpl
This adapter class is the container for all context types for internal use.(package private) class
InternalContextBase
class to encapsulate the 'stuff' for internal operation of velocity.Fields in org.apache.velocity.context declared as InternalHousekeepingContext Modifier and Type Field Description (package private) InternalHousekeepingContext
InternalContextAdapterImpl. icb
the ICB we are wrapping. -
Uses of InternalHousekeepingContext in org.apache.velocity.example
Classes in org.apache.velocity.example that implement InternalHousekeepingContext Modifier and Type Class Description class
DBContext
Example context impl that uses a database to store stuff :) yes, this is silly expects a mysql db test with table CREATE TABLE contextstore ( k varchar(100), val blob ); very fragile, crappy code....class
TreeMapContext
Example context impl that uses a TreeMap Not much point other than to show how easy it is.
-