110111112113114115116117118119120121122123
@SuppressWarnings("unchecked") public <T> T get(Contextual<T> component) { checkActive(); BeanInstanceBag bag = componentInstanceMap.get(component); if(bag != null) { return (T) bag.getBeanInstance(); } return null; }
170171172173174175176177178179180181182183
102103104105106107108109110111112113114115
101102103104105106107108109110111112113114