Uses of Class
com.google.inject.spi.Message
-
Packages that use Message Package Description com.google.inject Google Guice (pronounced "juice") is an ultra-lightweight dependency injection framework.com.google.inject.spi Guice service provider interface -
-
Uses of Message in com.google.inject
Methods in com.google.inject that return types with arguments of type Message Modifier and Type Method Description Collection<Message>
ConfigurationException. getErrorMessages()
Returns messages for the errors that caused this exception.Collection<Message>
CreationException. getErrorMessages()
Returns messages for the errors that caused this exception.Collection<Message>
ProvisionException. getErrorMessages()
Returns messages for the errors that caused this exception.Methods in com.google.inject with parameters of type Message Modifier and Type Method Description protected void
AbstractModule. addError(Message message)
void
Binder. addError(Message message)
Records an error message to be presented to the user at a later time.protected void
PrivateModule. addError(Message message)
Constructor parameters in com.google.inject with type arguments of type Message Constructor Description ConfigurationException(Iterable<Message> messages)
Creates a ConfigurationException containingmessages
.CreationException(Collection<Message> messages)
Creates a CreationException containingmessages
.ProvisionException(Iterable<Message> messages)
Creates a ProvisionException containingmessages
. -
Uses of Message in com.google.inject.spi
Methods in com.google.inject.spi that return Message Modifier and Type Method Description Message
Message. withSource(List<Object> newSources)
Returns a copy of thisMessage
with its sources replaced.Methods in com.google.inject.spi that return types with arguments of type Message Modifier and Type Method Description static ImmutableList<Message>
BindingSourceRestriction. check(com.google.inject.internal.GuiceInternal guiceInternal, List<Element> elements)
Returns all the restriction violations found on the given Module Elements, as error messages.Methods in com.google.inject.spi with parameters of type Message Modifier and Type Method Description void
TypeEncounter. addError(Message message)
Records an error message to be presented to the user at a later time.V
DefaultElementVisitor. visit(Message message)
V
ElementVisitor. visit(Message message)
Visit an error message and the context in which it occurred.
-