Package com.google.inject.internal
Class AbstractBindingBuilder<T>
- java.lang.Object
-
- com.google.inject.internal.AbstractBindingBuilder<T>
-
- Direct Known Subclasses:
BindingBuilder
,ConstantBindingBuilderImpl
public abstract class AbstractBindingBuilder<T> extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ANNOTATION_ALREADY_SPECIFIED
protected Binder
binder
The binder that the new binding will be added to.private BindingImpl<T>
binding
static java.lang.String
BINDING_TO_NULL
static java.lang.String
CONSTANT_VALUE_ALREADY_SET
protected java.util.List<Element>
elements
The list of elements stored inside thebinder
.static java.lang.String
IMPLEMENTATION_ALREADY_SET
protected static Key<?>
NULL_KEY
protected int
position
The index of the new binding inelements
.static java.lang.String
SCOPE_ALREADY_SET
static java.lang.String
SINGLE_INSTANCE_AND_SCOPE
-
Constructor Summary
Constructors Constructor Description AbstractBindingBuilder(Binder binder, java.util.List<Element> elements, java.lang.Object source, Key<T> key)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected BindingImpl<T>
annotatedWithInternal(java.lang.annotation.Annotation annotation)
Sets the binding to a copy with the specified annotation on the bound keyprotected BindingImpl<T>
annotatedWithInternal(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
Sets the binding to a copy with the specified annotation on the bound keyvoid
asEagerSingleton()
protected void
checkNotAnnotated()
protected void
checkNotScoped()
protected void
checkNotTargetted()
protected BindingImpl<T>
getBinding()
void
in(Scope scope)
void
in(java.lang.Class<? extends java.lang.annotation.Annotation> scopeAnnotation)
protected boolean
keyTypeIsSet()
protected BindingImpl<T>
setBinding(BindingImpl<T> binding)
-
-
-
Field Detail
-
IMPLEMENTATION_ALREADY_SET
public static final java.lang.String IMPLEMENTATION_ALREADY_SET
- See Also:
- Constant Field Values
-
SINGLE_INSTANCE_AND_SCOPE
public static final java.lang.String SINGLE_INSTANCE_AND_SCOPE
- See Also:
- Constant Field Values
-
SCOPE_ALREADY_SET
public static final java.lang.String SCOPE_ALREADY_SET
- See Also:
- Constant Field Values
-
BINDING_TO_NULL
public static final java.lang.String BINDING_TO_NULL
- See Also:
- Constant Field Values
-
CONSTANT_VALUE_ALREADY_SET
public static final java.lang.String CONSTANT_VALUE_ALREADY_SET
- See Also:
- Constant Field Values
-
ANNOTATION_ALREADY_SPECIFIED
public static final java.lang.String ANNOTATION_ALREADY_SPECIFIED
- See Also:
- Constant Field Values
-
NULL_KEY
protected static final Key<?> NULL_KEY
-
binder
protected final Binder binder
The binder that the new binding will be added to.
-
elements
protected java.util.List<Element> elements
The list of elements stored inside thebinder
. The new binding is added to this list.
-
position
protected int position
-
binding
private BindingImpl<T> binding
-
-
Method Detail
-
getBinding
protected BindingImpl<T> getBinding()
-
setBinding
protected BindingImpl<T> setBinding(BindingImpl<T> binding)
-
annotatedWithInternal
protected BindingImpl<T> annotatedWithInternal(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
Sets the binding to a copy with the specified annotation on the bound key
-
annotatedWithInternal
protected BindingImpl<T> annotatedWithInternal(java.lang.annotation.Annotation annotation)
Sets the binding to a copy with the specified annotation on the bound key
-
in
public void in(java.lang.Class<? extends java.lang.annotation.Annotation> scopeAnnotation)
-
in
public void in(Scope scope)
-
asEagerSingleton
public void asEagerSingleton()
-
keyTypeIsSet
protected boolean keyTypeIsSet()
-
checkNotTargetted
protected void checkNotTargetted()
-
checkNotAnnotated
protected void checkNotAnnotated()
-
checkNotScoped
protected void checkNotScoped()
-
-