| org.springframework.ui.context.ThemeSource
All known Subclasses: org.springframework.web.context.support.StaticWebApplicationContext, org.springframework.web.context.support.GenericWebApplicationContext, org.springframework.web.context.support.AbstractRefreshableWebApplicationContext,
ThemeSource | public interface ThemeSource (Code) | | Interface to be implemented by objects that can resolve Themes.
This enables parameterization and internationalization of messages
for a given theme.
author: Jean-Pierre Pawlak author: Juergen Hoeller See Also: Theme |
Method Summary | |
Theme | getTheme(String themeName) Return the Theme instance for the given theme name.
The returned Theme will resolve theme-specific messages, codes,
file paths, etc (e.g. |
getTheme | Theme getTheme(String themeName)(Code) | | Return the Theme instance for the given theme name.
The returned Theme will resolve theme-specific messages, codes,
file paths, etc (e.g. CSS and image files in a web environment).
Parameters: themeName - name of the theme the respective Theme, or null if none defined |
|
|