summaryrefslogtreecommitdiffstats
path: root/sangria-contextual
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2014-04-03 10:48:59 -0400
committerTavian Barnes <tavianator@tavianator.com>2014-04-03 10:58:47 -0400
commitebd97d704c85166d8325ba0599466ffbe46f3823 (patch)
treea6c8866b109c84f36e35b46ae7ade13b51461c5b /sangria-contextual
parent00d80a2b4414d2930e90df39d83d8887b13f6ae5 (diff)
downloadsangria-ebd97d704c85166d8325ba0599466ffbe46f3823.tar.xz
contextual: Weaken generics on toContextSensitiveProvider() to match toProvider().
Diffstat (limited to 'sangria-contextual')
-rw-r--r--sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBinder.java36
-rw-r--r--sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java8
2 files changed, 22 insertions, 22 deletions
diff --git a/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBinder.java b/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBinder.java
index cf24cc4..7f86973 100644
--- a/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBinder.java
+++ b/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBinder.java
@@ -103,50 +103,50 @@ public class ContextSensitiveBinder {
* Fluent binding builder implementation.
*/
private class BindingBuilder<T> implements AnnotatedContextSensitiveBindingBuilder<T> {
- private final Key<T> key;
+ private final Key<T> bindingKey;
private final DelayedError error;
- BindingBuilder(Key<T> key) {
- this.key = key;
- this.error = DelayedError.create(binder, "Missing call to toContextSensitiveProvider() for %s", key);
+ BindingBuilder(Key<T> bindingKey) {
+ this.bindingKey = bindingKey;
+ this.error = DelayedError.create(binder, "Missing call to toContextSensitiveProvider() for %s", bindingKey);
}
@Override
public ContextSensitiveBindingBuilder<T> annotatedWith(Class<? extends Annotation> annotationType) {
error.cancel();
- return new BindingBuilder<>(Key.get(key.getTypeLiteral(), annotationType));
+ return new BindingBuilder<>(Key.get(bindingKey.getTypeLiteral(), annotationType));
}
@Override
public ContextSensitiveBindingBuilder<T> annotatedWith(Annotation annotation) {
error.cancel();
- return new BindingBuilder<>(Key.get(key.getTypeLiteral(), annotation));
+ return new BindingBuilder<>(Key.get(bindingKey.getTypeLiteral(), annotation));
}
@Override
- public void toContextSensitiveProvider(Class<? extends ContextSensitiveProvider<T>> type) {
+ public void toContextSensitiveProvider(Class<? extends ContextSensitiveProvider<? extends T>> type) {
toContextSensitiveProvider(Key.get(type));
}
@Override
- public void toContextSensitiveProvider(TypeLiteral<? extends ContextSensitiveProvider<T>> type) {
+ public void toContextSensitiveProvider(TypeLiteral<? extends ContextSensitiveProvider<? extends T>> type) {
toContextSensitiveProvider(Key.get(type));
}
@Override
- public void toContextSensitiveProvider(Key<? extends ContextSensitiveProvider<T>> type) {
+ public void toContextSensitiveProvider(Key<? extends ContextSensitiveProvider<? extends T>> key) {
error.cancel();
- binder.bind(key).toProvider(new ProviderAdapter<>(type));
- binder.bindListener(new BindingMatcher(key), new Trigger(key));
+ binder.bind(bindingKey).toProvider(new ProviderAdapter<>(key));
+ binder.bindListener(new BindingMatcher(bindingKey), new Trigger(bindingKey));
}
@Override
- public void toContextSensitiveProvider(ContextSensitiveProvider<T> provider) {
+ public void toContextSensitiveProvider(ContextSensitiveProvider<? extends T> provider) {
error.cancel();
- binder.bind(key).toProvider(new ProviderAdapter<>(provider));
- binder.bindListener(new BindingMatcher(key), new Trigger(key));
+ binder.bind(bindingKey).toProvider(new ProviderAdapter<>(provider));
+ binder.bindListener(new BindingMatcher(bindingKey), new Trigger(bindingKey));
// Match the behaviour of LinkedBindingBuilder#toProvider(Provider)
binder.requestInjection(provider);
}
@@ -159,10 +159,10 @@ public class ContextSensitiveBinder {
private static final ThreadLocal<InjectionPoint> CURRENT_CONTEXT = new ThreadLocal<>();
private final Object equalityKey;
- private final @Nullable Key<? extends ContextSensitiveProvider<T>> providerKey;
- private Provider<? extends ContextSensitiveProvider<T>> provider;
+ private final @Nullable Key<? extends ContextSensitiveProvider<? extends T>> providerKey;
+ private Provider<? extends ContextSensitiveProvider<? extends T>> provider;
- ProviderAdapter(Key<? extends ContextSensitiveProvider<T>> providerKey) {
+ ProviderAdapter(Key<? extends ContextSensitiveProvider<? extends T>> providerKey) {
this.equalityKey = providerKey;
this.providerKey = providerKey;
}
@@ -190,7 +190,7 @@ public class ContextSensitiveBinder {
@Override
public T get() {
- ContextSensitiveProvider<T> delegate = provider.get();
+ ContextSensitiveProvider<? extends T> delegate = provider.get();
InjectionPoint ip = CURRENT_CONTEXT.get();
if (ip != null) {
return delegate.getInContext(ip);
diff --git a/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java b/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java
index dc2b60b..b5797de 100644
--- a/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java
+++ b/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java
@@ -31,20 +31,20 @@ public interface ContextSensitiveBindingBuilder<T> {
/**
* See the EDSL examples {@link ContextSensitiveBinder here}.
*/
- void toContextSensitiveProvider(Class<? extends ContextSensitiveProvider<T>> type);
+ void toContextSensitiveProvider(Class<? extends ContextSensitiveProvider<? extends T>> type);
/**
* See the EDSL examples {@link ContextSensitiveBinder here}.
*/
- void toContextSensitiveProvider(TypeLiteral<? extends ContextSensitiveProvider<T>> type);
+ void toContextSensitiveProvider(TypeLiteral<? extends ContextSensitiveProvider<? extends T>> type);
/**
* See the EDSL examples {@link ContextSensitiveBinder here}.
*/
- void toContextSensitiveProvider(Key<? extends ContextSensitiveProvider<T>> type);
+ void toContextSensitiveProvider(Key<? extends ContextSensitiveProvider<? extends T>> key);
/**
* See the EDSL examples {@link ContextSensitiveBinder here}.
*/
- void toContextSensitiveProvider(ContextSensitiveProvider<T> provider);
+ void toContextSensitiveProvider(ContextSensitiveProvider<? extends T> provider);
}