1 17 18 package org.objectweb.jac.aspects.cache; 19 20 import org.objectweb.jac.core.rtti.AbstractMethodItem; 21 22 25 26 public interface CacheConf { 27 40 void cache(String classExpr, String methodExpr); 41 42 56 void cacheWithTimeStamps( 57 String classExpr, String methodExpr, 58 String stampsName); 59 60 70 void setIgnoredParameters(AbstractMethodItem method, int[] ignored); 71 72 } 73 | Popular Tags |