- InitializingBean - Interface in no.tornado.inject
-
Let your bean implement this interface to be notified once the ApplicationContext is initialized.
- inject(Object) - Static method in class no.tornado.inject.ApplicationContext
-
Inject beans from the ApplicationContext into an arbitrary object that is not
part of the ApplicationContext.
- Inject - Annotation Type in no.tornado.inject
-
Fields in your beans annotated with Inject will be automatically injected.
- instantiate() - Method in class no.tornado.inject.BeanInfo
-
- Intercept - Annotation Type in no.tornado.inject
-
Annotate any beanProviderMethod with @Intercept("interceptorBean") to
reference another bean that must implement the Interceptor interface.
- intercept(Object, Method, Object[]) - Method in interface no.tornado.inject.Interceptor
-
- Interceptor - Interface in no.tornado.inject
-
An interceptor will be called instead of the normal method invocation for proxied beans.
- invoke(Object, Method, Object[]) - Method in class no.tornado.inject.BeanProxy
-
- isEager() - Method in class no.tornado.inject.BeanInfo
-