1 /** 2 * Functionality needed for Bean introspection, required for detecting 3 * accessors and mutators for Beans, as well as locating and handling 4 * method annotations. 5 *<p> 6 * Beyond collecting annotations, additional "method annotation inheritance" 7 * is also supported: whereas regular JDK classes do not add annotations 8 * from overridden methods in any situation. But code in this package does. 9 * Similarly class-annotations are inherited properly from interfaces, in 10 * addition to abstract and concrete classes. 11 */ 12 package com.fasterxml.jackson.databind.introspect; 13