The Spring Framework

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
 String MessageSource.getMessage(MessageSourceResolvable resolvable, 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
 String MessageSourceAccessor.getMessage(MessageSourceResolvable resolvable)
          Retrieve the given MessageSourceResolvable (e.g. an ObjectError instance) in the default Locale.
 String AbstractApplicationContext.getMessage(MessageSourceResolvable resolvable, Locale locale)
           
 String MessageSourceAccessor.getMessage(MessageSourceResolvable resolvable, Locale locale)
          Retrieve the given MessageSourceResolvable (e.g. an ObjectError instance) in the given Locale.
 String DelegatingMessageSource.getMessage(MessageSourceResolvable resolvable, Locale locale)
           
 String AbstractMessageSource.getMessage(MessageSourceResolvable resolvable, 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, that is, a reason for rejecting a specific field value.
 class ObjectError
          Encapsulates an object error, that is, a global reason for rejecting an object.
 

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

Methods in org.springframework.web.servlet.support with parameters of type MessageSourceResolvable
 String RequestContext.getMessage(MessageSourceResolvable resolvable)
          Retrieve the given MessageSourceResolvable (e.g. an ObjectError instance), using the "defaultHtmlEscape" setting.
 String RequestContext.getMessage(MessageSourceResolvable resolvable, boolean htmlEscape)
          Retrieve the given MessageSourceResolvable (e.g. an ObjectError instance).
 String RequestContext.getThemeMessage(MessageSourceResolvable resolvable)
          Retrieve the given MessageSourceResolvable in the current theme.
 


The Spring Framework

Copyright © 2002-2007 The Spring Framework.