Searched defs:stopClass (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/beans/
H A DIntrospector.java206 * @param stopClass The baseclass at which to stop the analysis. Any
207 * methods/properties/events in the stopClass or in its baseclasses
212 public static BeanInfo getBeanInfo(Class<?> beanClass, Class<?> stopClass) argument
214 return getBeanInfo(beanClass, stopClass, USE_ALL_BEANINFO);
219 * exposed methods and events, below a given {@code stopClass} point
230 * Any methods/properties/events in the {@code stopClass}
238 * @param stopClass the parent class at which to stop the analysis
245 public static BeanInfo getBeanInfo(Class<?> beanClass, Class<?> stopClass, argument
248 if (stopClass == null && flags == USE_ALL_BEANINFO) {
252 bi = (new Introspector(beanClass, stopClass, flag
369 Introspector(Class beanClass, Class stopClass, int flags) argument
[all...]

Completed in 30 milliseconds