org.springframework.context.support
Class MessageSourceResourceBundle

java.lang.Object
  extended byjava.util.ResourceBundle
      extended byorg.springframework.context.support.MessageSourceResourceBundle

public class MessageSourceResourceBundle
extends ResourceBundle

Helper class that allows for accessing a MessageSource as a ResourceBundle. Used for example to expose a Spring MessageSource to JSTL web views.

Since:
27.02.2003
Author:
Juergen Hoeller
See Also:
MessageSource, ResourceBundle, JstlUtils.exposeLocalizationContext(javax.servlet.http.HttpServletRequest, org.springframework.context.MessageSource)

Field Summary
 
Fields inherited from class java.util.ResourceBundle
parent
 
Constructor Summary
MessageSourceResourceBundle(MessageSource source, Locale locale)
           
 
Method Summary
 Enumeration getKeys()
          This implementation returns null, as a MessageSource does not allow for enumerating the defined message codes.
protected  Object handleGetObject(String code)
          This implementation resolves the code in the MessageSource.
 
Methods inherited from class java.util.ResourceBundle
getBundle, getBundle, getBundle, getLocale, getObject, getString, getStringArray, setParent
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MessageSourceResourceBundle

public MessageSourceResourceBundle(MessageSource source,
                                   Locale locale)
Method Detail

handleGetObject

protected Object handleGetObject(String code)
This implementation resolves the code in the MessageSource. Returns null if the message could not be resolved.


getKeys

public Enumeration getKeys()
This implementation returns null, as a MessageSource does not allow for enumerating the defined message codes.



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