blob: 0b29e0a54a5e46bd3e57afc5774531edb58ee6cc [file] [log] [blame]
limpbizkit76c24b12008-12-25 04:32:41 +00001/*
2 * Copyright (C) 2007 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.google.inject.internal;
18
19import com.google.inject.Injector;
20import com.google.inject.Key;
limpbizkit03b81a62009-03-18 05:34:39 +000021import com.google.inject.Binder;
limpbizkit76c24b12008-12-25 04:32:41 +000022import com.google.inject.spi.BindingTargetVisitor;
23import com.google.inject.spi.LinkedKeyBinding;
24
25public final class LinkedBindingImpl<T> extends BindingImpl<T> implements LinkedKeyBinding<T> {
26
27 final Key<? extends T> targetKey;
28
29 public LinkedBindingImpl(Injector injector, Key<T> key, Object source,
30 InternalFactory<? extends T> internalFactory, Scoping scoping,
31 Key<? extends T> targetKey) {
32 super(injector, key, source, internalFactory, scoping);
33 this.targetKey = targetKey;
34 }
35
36 public LinkedBindingImpl(Object source, Key<T> key, Scoping scoping, Key<? extends T> targetKey) {
37 super(source, key, scoping);
38 this.targetKey = targetKey;
39 }
40
limpbizkit8996e802008-12-28 01:44:29 +000041 public <V> V acceptTargetVisitor(BindingTargetVisitor<? super T, V> visitor) {
limpbizkit03b81a62009-03-18 05:34:39 +000042 return visitor.visit(this);
limpbizkit76c24b12008-12-25 04:32:41 +000043 }
44
45 public Key<? extends T> getLinkedKey() {
46 return targetKey;
47 }
48
49 public BindingImpl<T> withScoping(Scoping scoping) {
50 return new LinkedBindingImpl<T>(getSource(), getKey(), scoping, targetKey);
51 }
52
53 public BindingImpl<T> withKey(Key<T> key) {
54 return new LinkedBindingImpl<T>(getSource(), key, getScoping(), targetKey);
55 }
56
limpbizkit03b81a62009-03-18 05:34:39 +000057 public void applyTo(Binder binder) {
58 getScoping().applyTo(binder.withSource(getSource()).bind(getKey()).to(getLinkedKey()));
59 }
60
limpbizkit76c24b12008-12-25 04:32:41 +000061 @Override public String toString() {
62 return new ToStringBuilder(LinkedKeyBinding.class)
63 .add("key", getKey())
limpbizkit76c24b12008-12-25 04:32:41 +000064 .add("source", getSource())
limpbizkitc3f92842008-12-30 19:43:47 +000065 .add("scope", getScoping())
66 .add("target", targetKey)
limpbizkit76c24b12008-12-25 04:32:41 +000067 .toString();
68 }
69}