public interface

HierarchicalMessageSource

implements MessageSource
org.springframework.context.HierarchicalMessageSource
Known Indirect Subclasses

Class Overview

Sub-interface of MessageSource to be implemented by objects that can resolve messages hierarchically.

Summary

Public Methods
abstract MessageSource getParentMessageSource()
Return the parent of this MessageSource, or null if none.
abstract void setParentMessageSource(MessageSource parent)
Set the parent that will be used to try to resolve messages that this object can't resolve.
[Expand]
Inherited Methods
From interface org.springframework.context.MessageSource

Public Methods

public abstract MessageSource getParentMessageSource ()

Return the parent of this MessageSource, or null if none.

public abstract void setParentMessageSource (MessageSource parent)

Set the parent that will be used to try to resolve messages that this object can't resolve.

Parameters
parent the parent MessageSource that will be used to resolve messages that this object can't resolve. May be null, in which case no further resolution is possible.