/** @see org.apache.velocity.context.InternalWrapperContext#getBaseContext() */
 public InternalContextAdapter getBaseContext() {
   return innerContext.getBaseContext();
 }
Example #2
0
  /** CTOR, wraps an ICA */
  public VMContext(InternalContextAdapter inner, RuntimeServices rsvc) {
    localcontextscope = rsvc.getBoolean(RuntimeConstants.VM_CONTEXT_LOCALSCOPE, false);

    wrappedContext = inner;
    innerContext = inner.getBaseContext();
  }