Package | Description |
---|---|
com.google.gwt.inject.rebind | |
com.google.gwt.inject.rebind.binding | |
com.google.gwt.inject.rebind.resolution |
Modifier and Type | Method and Description |
---|---|
Binding |
GinjectorBindings.getBinding(Key<?> key) |
Modifier and Type | Method and Description |
---|---|
Iterable<Map.Entry<Key<?>,Binding>> |
GinjectorBindings.getBindings() |
Modifier and Type | Method and Description |
---|---|
void |
GinjectorBindings.addBinding(Key<?> key,
Binding binding) |
void |
ErrorManager.logDoubleBind(Key<?> key,
Binding binding1,
GinjectorBindings ginjector1,
Binding binding2,
GinjectorBindings ginjector2) |
Modifier and Type | Class and Description |
---|---|
class |
AsyncProviderBinding
Binding implementation for
AsyncProvider<T> that generates
the following code for the provider:
return new %provider_name% () { public void get(final AsyncCallback<%object_to_create%> callback) { GWT.runAsync(new RunAsyncCallback() { public void onSuccess() { callback.onSuccess(%provider_of_object_to_create%.get()); } public void onFailure(Throwable ex) { callback.onFailure(ex); } } } } |
class |
BindClassBinding
Binding implementation that replaces one type with another.
|
class |
BindConstantBinding<T>
Binding for a constant value.
|
class |
BindProviderBinding
A binding to call the requested
Provider . |
class |
CallConstructorBinding
A binding that calls a single constructor directly.
|
class |
CallGwtDotCreateBinding
A binding that just calls
GWT.create() for the requested type. |
class |
ExposedChildBinding
Binding that represents a value exposed to this level from lower in the injector hierarchy.
|
class |
FactoryBinding
Binder producing assisted inject factories.
|
class |
GinjectorBinding
Simple binding that allows injection of the ginjector.
|
class |
ImplicitProviderBinding
Binding implementation for
Provider<T> that just uses the binding
to T . |
class |
ParentBinding
Binding that represents a value inherited from higher in the injector hierarchy.
|
class |
ProviderMethodBinding
A binding that calls a provider method.
|
class |
RemoteServiceProxyBinding
A binding that calls
GWT.create() for the non-"Async" version
of the requested type. |
Modifier and Type | Method and Description |
---|---|
Binding |
ImplicitBindingCreator.create(Key<?> key)
Creates the implicit binding
|
Modifier and Type | Method and Description |
---|---|
Collection<Map.Entry<Key<?>,Binding>> |
DependencyExplorer.DependencyExplorerOutput.getImplicitBindings()
Returns map entries containing the
Key<?> s that weren't already available and the
Binding we created (implicitly) for it. |
Copyright © 2008–2018. All rights reserved.