java.lang.Object |
↳ |
com.google.inject.spi.DefaultElementVisitor<V> |
Class Overview
No-op visitor for subclassing. All interface methods simply delegate to
visitOther(Element)
, returning its result.
Summary
Public Methods |
<T>
V
|
visit(Binding<T> binding)
Visit a mapping from a key (type and optional annotation) to the strategy for getting
instances of the type.
|
V
|
visit(InjectionRequest<?> injectionRequest)
Visit a request to inject the instance fields and methods of an instance.
|
V
|
visit(InterceptorBinding interceptorBinding)
Visit a registration of interceptors for matching methods of matching classes.
|
<T>
V
|
visit(MembersInjectorLookup<T> lookup)
Visit a lookup of the members injector.
|
V
|
visit(Message message)
Visit an error message and the context in which it occured.
|
V
|
visit(PrivateElements privateElements)
|
<T>
V
|
visit(ProviderLookup<T> providerLookup)
Visit a lookup of the provider for a type.
|
V
|
visit(ScopeBinding scopeBinding)
Visit a registration of a scope annotation with the scope that implements it.
|
V
|
visit(StaticInjectionRequest staticInjectionRequest)
Visit a request to inject the static fields and methods of type.
|
V
|
visit(TypeConverterBinding typeConverterBinding)
Visit a registration of type converters for matching target types.
|
V
|
visit(TypeListenerBinding binding)
Visit an injectable type listener binding.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0)
|
final
void
|
wait(long arg0, int arg1)
|
|
From interface
com.google.inject.spi.ElementVisitor
abstract
<T>
V
|
visit(Binding<T> binding)
Visit a mapping from a key (type and optional annotation) to the strategy for getting
instances of the type.
|
abstract
V
|
visit(InjectionRequest<?> request)
Visit a request to inject the instance fields and methods of an instance.
|
abstract
V
|
visit(InterceptorBinding binding)
Visit a registration of interceptors for matching methods of matching classes.
|
abstract
<T>
V
|
visit(MembersInjectorLookup<T> lookup)
Visit a lookup of the members injector.
|
abstract
V
|
visit(Message message)
Visit an error message and the context in which it occured.
|
abstract
V
|
visit(PrivateElements elements)
|
abstract
<T>
V
|
visit(ProviderLookup<T> lookup)
Visit a lookup of the provider for a type.
|
abstract
V
|
visit(ScopeBinding binding)
Visit a registration of a scope annotation with the scope that implements it.
|
abstract
V
|
visit(StaticInjectionRequest request)
Visit a request to inject the static fields and methods of type.
|
abstract
V
|
visit(TypeConverterBinding binding)
Visit a registration of type converters for matching target types.
|
abstract
V
|
visit(TypeListenerBinding binding)
Visit an injectable type listener binding.
|
|
Public Constructors
public
DefaultElementVisitor
()
Public Methods
public
V
visit
(Binding<T> binding)
Visit a mapping from a key (type and optional annotation) to the strategy for getting
instances of the type.
public
V
visit
(InjectionRequest<?> injectionRequest)
Visit a request to inject the instance fields and methods of an instance.
Visit a registration of interceptors for matching methods of matching classes.
Visit a lookup of the members injector.
public
V
visit
(Message message)
Visit an error message and the context in which it occured.
public
V
visit
(ProviderLookup<T> providerLookup)
Visit a lookup of the provider for a type.
public
V
visit
(ScopeBinding scopeBinding)
Visit a registration of a scope annotation with the scope that implements it.
Visit a request to inject the static fields and methods of type.
Visit a registration of type converters for matching target types.
Visit an injectable type listener binding.
Protected Methods
protected
V
visitOther
(Element element)
Default visit implementation. Returns null
.