All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.mmm.util.nls.impl.NlsResourceBundleLocator Maven / Gradle / Ivy

/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package net.sf.mmm.util.nls.impl;

import java.util.List;
import java.util.ResourceBundle;

/**
 * This is the interface for an internal component that automatically {@link #findBundles() finds} the
 * declared {@link ResourceBundle bundles}.
 *
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 3.0.0
 */
public interface NlsResourceBundleLocator {

  /**
   * This method automatically finds and creates instances of {@link ResourceBundle} for
   * {@link java.util.Locale#ROOT} via
   * {@link net.sf.mmm.util.nls.api.NlsTemplateResolver#CLASSPATH_NLS_BUNDLE}.
   *
   * @return the {@link List} of {@link ResourceBundle}s.
   */
  List findBundles();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy