1 22 package org.jboss.cache.util; 23 24 import bsh.CallStack; 25 import bsh.Interpreter; 26 import org.jboss.cache.CacheImpl; 27 import org.jboss.cache.TreeCacheView2; 28 29 39 public class setCache 40 { 41 public static void invoke(Interpreter env, CallStack callstack, 42 CacheImpl cache) 43 { 44 45 try 46 { 47 TreeCacheView2.setCache(cache); 48 } 49 catch (Exception ex) 50 { 51 ex.printStackTrace(); 52 } 53 } 54 } 55 | Popular Tags |