1 package org.apache.velocity.context; 2 3 18 19 import org.apache.velocity.util.introspection.IntrospectionCacheData; 20 21 import org.apache.velocity.runtime.resource.Resource; 22 23 36 interface InternalHousekeepingContext 37 { 38 43 void pushCurrentTemplateName( String s ); 44 45 48 void popCurrentTemplateName(); 49 50 55 String getCurrentTemplateName(); 56 57 62 Object [] getTemplateNameStack(); 63 64 71 IntrospectionCacheData icacheGet( Object key ); 72 73 80 void icachePut( Object key, IntrospectionCacheData o ); 81 82 87 Resource getCurrentResource(); 88 void setCurrentResource( Resource r ); 89 90 91 } 92 | Popular Tags |