Package net.sf.cglib.core
Class DuplicatesPredicate
- java.lang.Object
-
- net.sf.cglib.core.DuplicatesPredicate
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
DuplicatesPredicate.UnnecessaryBridgeFinder
-
Constructor Summary
Constructors Constructor Description DuplicatesPredicate()
Constructs a DuplicatesPredicate that will allow subclass bridge methods to be preferred over superclass non-bridge methods.DuplicatesPredicate(java.util.List allMethods)
Constructs a DuplicatesPredicate that prefers using superclass non-bridge methods despite a subclass method with the same signtaure existing (if the subclass is a bridge method).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
evaluate(java.lang.Object arg)
private static java.lang.ClassLoader
getClassLoader(java.lang.Class c)
-
-
-
Constructor Detail
-
DuplicatesPredicate
public DuplicatesPredicate()
Constructs a DuplicatesPredicate that will allow subclass bridge methods to be preferred over superclass non-bridge methods.
-
DuplicatesPredicate
public DuplicatesPredicate(java.util.List allMethods)
Constructs a DuplicatesPredicate that prefers using superclass non-bridge methods despite a subclass method with the same signtaure existing (if the subclass is a bridge method).
-
-