HomeSort by relevance Sort by last modified time
    Searched defs:beanFactory (Results 1 - 3 of 3) sorted by null

  /external/guice/extensions/spring/test/com/google/inject/spring/
SpringIntegrationTest.java 30 import org.springframework.beans.factory.BeanFactory;
40 final DefaultListableBeanFactory beanFactory
45 beanFactory.registerBeanDefinition("singleton", singleton);
49 beanFactory.registerBeanDefinition("prototype", prototype);
53 bind(BeanFactory.class).toInstance(beanFactory);
71 final DefaultListableBeanFactory beanFactory
76 beanFactory.registerBeanDefinition("singleton", singleton);
80 beanFactory.registerBeanDefinition("prototype", prototype);
84 SpringIntegration.bindAll(binder(), beanFactory);
    [all...]
  /external/guice/extensions/spring/src/com/google/inject/spring/
SpringIntegration.java 26 import org.springframework.beans.factory.BeanFactory;
40 * org.springframework.beans.factory.BeanFactory}. Example usage:
59 public static void bindAll(Binder binder, ListableBeanFactory beanFactory) {
62 for (String name : beanFactory.getBeanDefinitionNames()) {
63 Class<?> type = beanFactory.getType(name);
64 bindBean(binder, beanFactory, name, type);
68 static <T> void bindBean(Binder binder, ListableBeanFactory beanFactory,
73 provider.initialize(beanFactory);
87 BeanFactory beanFactory;
    [all...]
  /external/guice/lib/build/
spring-beans.jar 

Completed in 63 milliseconds