List of usage examples for org.springframework.context.support ReloadableResourceBundleMessageSource subclass-usage
From source file net.solarnetwork.web.support.ReloadableResourceBundleMessagesSource.java
/**
* Extension of {@link ReloadableResourceBundleMessagesSource} to allow finding
* all keys for all messages.
*
* <p>
* Adapted from {@code magoffin.matt.xweb.util.ResourceBundleMessagesSource}.
From source file se.softhouse.garden.orchid.spring.text.OrchidReloadableResourceBundleMessageSource.java
/**
* Extends the {@link ReloadableResourceBundleMessageSource} with functionality
* to read properties using named arguments with the {@link OrchidMessageFormat}
*
* @author mis
*
From source file com.nagarro.core.util.ws.impl.AddonAwareMessageSource.java
/** * MessageSource which can be aware of installed addons and extract message bundles from them. */ public class AddonAwareMessageSource extends ReloadableResourceBundleMessageSource implements ApplicationContextAware { private static final Logger LOG = Logger.getLogger(AddonAwareMessageSource.class);
From source file org.ng200.openolympus.resourceResolvers.OpenOlympusMessageSource.java
public final class OpenOlympusMessageSource extends ReloadableResourceBundleMessageSource { private static final Logger logger = LoggerFactory.getLogger(OpenOlympusMessageSource.class); @Value("${storagePath}") private String storagePath;
From source file org.agatom.springatom.core.locale.SAMessageSource.java
/**
* <p>SMessageSourceImpl class.</p>
* {@code SMessageSourceImpl} is an implementation of the {@link SMessageSource}
*
* @author kornicameister
* @version 0.0.2
From source file org.squashtest.tm.web.internal.context.ReloadableSquashTmMessageSource.java
/**
* This specialization of {@link ReloadableResourceBundleMessageSource} registers <strong>message.properties</strong>
* files from fragments looking up into standardized folders "/WEB-INF/messages/<wizard-name>/"
*
* @author Gregory Fouquet
*/
From source file org.openmrs.messagesource.impl.MutableResourceBundleMessageSource.java
/** * ResourceBundleMessageSource extends ReloadableResourceBundleMessageSource to provide the * additional features of a MutableMessageSource. */ public class MutableResourceBundleMessageSource extends ReloadableResourceBundleMessageSource implements MutableMessageSource, ApplicationContextAware {
From source file edu.jhuapl.openessence.i18n.InspectableResourceBundleMessageSource.java
/** * A {@link ReloadableResourceBundleMessageSource} that allows querying for all its messages and base names, among other * useful operations. */ public class InspectableResourceBundleMessageSource extends ReloadableResourceBundleMessageSource {
From source file com.expressui.core.view.util.MessageSource.java
/**
* Provides access to internationalized messages (labels, tooltips, etc.) found in the following locations:
* <ul>
* <li>uiMessageSource bean (uiMessages/messages_*) - UI messages that are independent of domain entities or
* business logic</li>
* <li>domainMessageSource bean (domainMessages/messages_*) - messages that pertain to domain entities or business
From source file org.codehaus.groovy.grails.context.support.PluginAwareResourceBundleMessageSource.java
/**
* A ReloadableResourceBundleMessageSource that is capable of loading message sources from plugins.
*
* @author Graeme Rocher
* @since 1.1
*/