Uses of Interface
javassist.util.proxy.MethodFilter
-
Packages that use MethodFilter Package Description javassist.util.proxy Dynamic proxy (similar toEnhancer
of cglib). -
-
Uses of MethodFilter in javassist.util.proxy
Fields in javassist.util.proxy declared as MethodFilter Modifier and Type Field Description private MethodFilter
ProxyFactory. methodFilter
Methods in javassist.util.proxy with parameters of type MethodFilter Modifier and Type Method Description private void
ProxyFactory. computeSignature(MethodFilter filter)
java.lang.Class<?>
ProxyFactory. createClass(java.lang.invoke.MethodHandles.Lookup lookup, MethodFilter filter)
Generates a proxy class using the supplied filter.java.lang.Class<?>
ProxyFactory. createClass(MethodFilter filter)
Generates a proxy class using the supplied filter.void
ProxyFactory. setFilter(MethodFilter mf)
Sets a filter that selects the methods that will be controlled by a handler.
-