Package com.google.inject.internal
Class MissingImplementationError<T>
- java.lang.Object
-
- com.google.inject.spi.ErrorDetail<T>
-
- com.google.inject.internal.InternalErrorDetail<MissingImplementationError<T>>
-
- com.google.inject.internal.MissingImplementationError<T>
-
- All Implemented Interfaces:
java.io.Serializable
final class MissingImplementationError<T> extends InternalErrorDetail<MissingImplementationError<T>>
Error reported by Guice when a key is not bound in the injector.
-
-
Field Summary
Fields Modifier and Type Field Description private Key<T>
key
private com.google.common.collect.ImmutableList<java.lang.String>
suggestions
-
Fields inherited from class com.google.inject.internal.InternalErrorDetail
errorId
-
-
Constructor Summary
Constructors Modifier Constructor Description private
MissingImplementationError(Key<T> key, com.google.common.collect.ImmutableList<java.lang.String> suggestions, java.util.List<java.lang.Object> sources)
MissingImplementationError(Key<T> key, Injector injector, java.util.List<java.lang.Object> sources)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
formatDetail(java.util.List<ErrorDetail<?>> mergeableErrors, java.util.Formatter formatter)
Formats the detail of this error message along with other errors that are mergeable with this error.boolean
isMergeable(ErrorDetail<?> otherError)
Returns true if this error can be merged with theotherError
and formatted together.private java.util.List<java.lang.Object>
trimSource(java.util.List<java.lang.Object> sources)
Omit the key itself in the source list since the information is redundant.MissingImplementationError<T>
withSources(java.util.List<java.lang.Object> newSources)
Returns a new instance of the sameErrorDetail
with updated sources.-
Methods inherited from class com.google.inject.internal.InternalErrorDetail
getErrorIdentifier, getLearnMoreLink
-
Methods inherited from class com.google.inject.spi.ErrorDetail
equals, format, getCause, getMessage, getSources, hashCode
-
-
-
-
Method Detail
-
isMergeable
public boolean isMergeable(ErrorDetail<?> otherError)
Description copied from class:ErrorDetail
Returns true if this error can be merged with theotherError
and formatted together.By default this return false and implementations that support merging with other errors should override this method.
- Overrides:
isMergeable
in classErrorDetail<MissingImplementationError<T>>
-
formatDetail
public void formatDetail(java.util.List<ErrorDetail<?>> mergeableErrors, java.util.Formatter formatter)
Description copied from class:ErrorDetail
Formats the detail of this error message along with other errors that are mergeable with this error. This is called fromErrorDetail.format(int, java.util.List<com.google.inject.spi.ErrorDetail<?>>, java.util.Formatter)
.mergeableErrors
is a list that contains all other errors that are reported in the same exception that are considered to be mergable with this error base on result of callingErrorDetail.isMergeable(com.google.inject.spi.ErrorDetail<?>)
. The list will be empty if non of the other errors are mergable with this error.- Specified by:
formatDetail
in classErrorDetail<MissingImplementationError<T>>
- Parameters:
mergeableErrors
- list of errors that are mergeable with this errorformatter
- for printing the error message
-
withSources
public MissingImplementationError<T> withSources(java.util.List<java.lang.Object> newSources)
Description copied from class:ErrorDetail
Returns a new instance of the sameErrorDetail
with updated sources.- Specified by:
withSources
in classErrorDetail<MissingImplementationError<T>>
-
trimSource
private java.util.List<java.lang.Object> trimSource(java.util.List<java.lang.Object> sources)
Omit the key itself in the source list since the information is redundant.
-
-