blob: cdeb3cd5bedddd5180af447ebe2054e0ab7852ef [file] [log] [blame]
crazyboblee712705c2007-09-07 03:20:30 +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;
18
19import com.google.inject.spi.ClassBinding;
20import com.google.inject.spi.BindingVisitor;
21import com.google.inject.internal.ToStringBuilder;
22
23/**
24 *
25 *
26 */
27class ClassBindingImpl<T> extends BindingImpl<T>
28 implements ClassBinding<T> {
29
30 ClassBindingImpl(InjectorImpl injector, Key<T> key, Object source,
31 InternalFactory<? extends T> internalFactory, Scope scope) {
32 super(injector, key, source, internalFactory, scope);
33 }
34
35 public void accept(BindingVisitor<? super T> visitor) {
36 visitor.visit(this);
37 }
38
39 @SuppressWarnings("unchecked")
40 public Class<T> getBoundClass() {
41 // T should always be the class itself.
42 return (Class<T>) key.getRawType();
43 }
44
45 @Override
46 public String toString() {
47 return new ToStringBuilder(ClassBinding.class)
48 .add("class", getBoundClass())
49 .add("scope", scope)
50 .add("source", source)
51 .toString();
52 }
53}