Uses of Interface
org.springframework.context.MessageSourceResolvable

Packages that use MessageSourceResolvable
org.springframework.context This package builds on the beans package to add support for message sources and for the Observer design pattern, and the ability for application objects to obtain resources using a consistent API. 
org.springframework.context.support Classes supporting the org.springframework.context package, such as abstract base classes for ApplicationContext implementations and a MessageSource implementation. 
org.springframework.validation Provides data binding and validation functionality, for usage in business and/or UI layers. 
org.springframework.web.servlet.support Support classes for Spring's web MVC framework. 
 

Uses of MessageSourceResolvable in org.springframework.context
 

Methods in org.springframework.context with parameters of type MessageSourceResolvable
 java.lang.String MessageSource.getMessage(MessageSourceResolvable resolvable, java.util.Locale locale)
          Try to resolve the message using all the attributes contained within the MessageSourceResolvable argument that was passed in.
 

Uses of MessageSourceResolvable in org.springframework.context.support
 

Classes in org.springframework.context.support that implement MessageSourceResolvable
 class DefaultMessageSourceResolvable
          Default implementation of the MessageSourceResolvable interface.
 

Methods in org.springframework.context.support with parameters of type MessageSourceResolvable
 java.lang.String MessageSourceAccessor.getMessage(MessageSourceResolvable resolvable)
          Retrieve the given MessageSourceResolvable (e.g.
 java.lang.String MessageSourceAccessor.getMessage(MessageSourceResolvable resolvable, java.util.Locale locale)
          Retrieve the given MessageSourceResolvable (e.g.
 java.lang.String AbstractMessageSource.getMessage(MessageSourceResolvable resolvable, java.util.Locale locale)
           
 java.lang.String AbstractApplicationContext.getMessage(MessageSourceResolvable resolvable, java.util.Locale locale)
           
 

Constructors in org.springframework.context.support with parameters of type MessageSourceResolvable
DefaultMessageSourceResolvable(MessageSourceResolvable resolvable)
          Copy constructor: Create a new instance from another resolvable.
 

Uses of MessageSourceResolvable in org.springframework.validation
 

Classes in org.springframework.validation that implement MessageSourceResolvable
 class FieldError
          Encapsulates a field error, i.e.
 class ObjectError
          Encapsulates an object error, i.e.
 

Uses of MessageSourceResolvable in org.springframework.web.servlet.support
 

Methods in org.springframework.web.servlet.support with parameters of type MessageSourceResolvable
 java.lang.String RequestContext.getMessage(MessageSourceResolvable resolvable)
          Retrieve the given MessageSourceResolvable (e.g.
 java.lang.String RequestContext.getMessage(MessageSourceResolvable resolvable, boolean htmlEscape)
          Retrieve the given MessageSourceResolvable (e.g.
 



Copyright (C) 2003-2004 The Spring Framework Project.