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

/openjdk7/jdk/src/share/classes/java/beans/
H A DThreadGroupContext.java67 private Map<Class<?>, BeanInfo> beanInfoCache; field in class:ThreadGroupContext
96 return (this.beanInfoCache != null)
97 ? this.beanInfoCache.get(type)
102 if (this.beanInfoCache == null) {
103 this.beanInfoCache = new WeakHashMap<>();
105 return this.beanInfoCache.put(type, info);
109 if (this.beanInfoCache != null) {
110 this.beanInfoCache.remove(type);
115 if (this.beanInfoCache != null) {
116 this.beanInfoCache
[all...]

Completed in 28 milliseconds