blob: a833143b704ae5485a18fb55fe00621840347444 [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.BindingVisitor;
20
21class InvalidBindingImpl<T> extends BindingImpl<T> {
22
23 InvalidBindingImpl(InjectorImpl injector, Key<T> key, Object source) {
24 super(injector, key, source, new InternalFactory<T>() {
limpbizkitfcf2b8c2007-10-21 18:23:43 +000025 public T get(InternalContext context, InjectionPoint<?> injectionPoint) {
crazyboblee712705c2007-09-07 03:20:30 +000026 throw new AssertionError();
27 }
28 }, Scopes.NO_SCOPE);
29 }
30
31 public void accept(BindingVisitor<? super T> bindingVisitor) {
32 throw new AssertionError();
33 }
34
35 public String toString() {
36 return "InvalidBinding";
37 }
38}