Uses of Interface
org.springframework.ui.context.ThemeSource
Packages that use ThemeSource Package Description org.springframework.ui.context Contains classes defining the application context subinterface for UI applications.org.springframework.ui.context.support Classes supporting the org.springframework.ui.context package.org.springframework.web.context.support Classes supporting theorg.springframework.web.contextpackage, such as WebApplicationContext implementations and various utility classes.org.springframework.web.servlet Provides servlets that integrate with the application context infrastructure, and the core interfaces and classes for the Spring web MVC framework.org.springframework.web.servlet.support Support classes for Spring's web MVC framework.Uses of ThemeSource in org.springframework.ui.context
Subinterfaces of ThemeSource in org.springframework.ui.context Modifier and Type Interface Description interfaceHierarchicalThemeSourceSub-interface of ThemeSource to be implemented by objects that can resolve theme messages hierarchically.Methods in org.springframework.ui.context that return ThemeSource Modifier and Type Method Description ThemeSourceHierarchicalThemeSource. getParentThemeSource()Return the parent of this ThemeSource, ornullif none.Methods in org.springframework.ui.context with parameters of type ThemeSource Modifier and Type Method Description voidHierarchicalThemeSource. setParentThemeSource(ThemeSource parent)Set the parent that will be used to try to resolve theme messages that this object can't resolve.Uses of ThemeSource in org.springframework.ui.context.support
Classes in org.springframework.ui.context.support that implement ThemeSource Modifier and Type Class Description classDelegatingThemeSourceEmpty ThemeSource that delegates all calls to the parent ThemeSource.classResourceBundleThemeSourceThemeSourceimplementation that looks up an individualResourceBundleper theme.Methods in org.springframework.ui.context.support that return ThemeSource Modifier and Type Method Description ThemeSourceDelegatingThemeSource. getParentThemeSource()ThemeSourceResourceBundleThemeSource. getParentThemeSource()static ThemeSourceUiApplicationContextUtils. initThemeSource(ApplicationContext context)Initialize the ThemeSource for the given application context, autodetecting a bean with the name "themeSource".Methods in org.springframework.ui.context.support with parameters of type ThemeSource Modifier and Type Method Description voidDelegatingThemeSource. setParentThemeSource(ThemeSource parentThemeSource)voidResourceBundleThemeSource. setParentThemeSource(ThemeSource parent)Uses of ThemeSource in org.springframework.web.context.support
Classes in org.springframework.web.context.support that implement ThemeSource Modifier and Type Class Description classAbstractRefreshableWebApplicationContextAbstractRefreshableApplicationContextsubclass which implements theConfigurableWebApplicationContextinterface for web environments.classAnnotationConfigWebApplicationContextWebApplicationContextimplementation which accepts component classes as input — in particular@Configuration-annotated classes, but also plain@Componentclasses and JSR-330 compliant classes usingjavax.injectannotations.classGenericWebApplicationContextSubclass ofGenericApplicationContext, suitable for web environments.classGroovyWebApplicationContextWebApplicationContextimplementation which takes its configuration from Groovy bean definition scripts and/or XML files, as understood by aGroovyBeanDefinitionReader.classStaticWebApplicationContextStaticWebApplicationContextimplementation for testing.classXmlWebApplicationContextWebApplicationContextimplementation which takes its configuration from XML documents, understood by anXmlBeanDefinitionReader.Uses of ThemeSource in org.springframework.web.servlet
Methods in org.springframework.web.servlet that return ThemeSource Modifier and Type Method Description ThemeSourceDispatcherServlet. getThemeSource()Return this servlet's ThemeSource, if any; else returnnull.Uses of ThemeSource in org.springframework.web.servlet.support
Methods in org.springframework.web.servlet.support that return ThemeSource Modifier and Type Method Description static ThemeSourceRequestContextUtils. getThemeSource(HttpServletRequest request)Return the ThemeSource that has been bound to the request by the DispatcherServlet.