1 16 17 package org.springframework.beans.factory.xml; 18 19 import java.lang.reflect.Method ; 20 21 import org.springframework.beans.factory.support.MethodReplacer; 22 23 27 public class FixedMethodReplacer implements MethodReplacer { 28 29 public static final String VALUE = "fixedMethodReplacer"; 30 31 public Object reimplement(Object obj, Method method, Object [] args) throws Throwable { 32 return VALUE; 33 } 34 35 } 36 | Popular Tags |