< prev index next >

src/java.base/share/classes/java/util/spi/AbstractResourceBundleProvider.java

Print this page




   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.util.spi;
  27 
  28 import jdk.internal.misc.JavaUtilResourceBundleAccess;
  29 import jdk.internal.misc.SharedSecrets;
  30 
  31 import java.io.IOException;
  32 import java.io.InputStream;
  33 import java.io.UncheckedIOException;
  34 import java.security.AccessController;
  35 import java.security.PrivilegedAction;
  36 import java.util.Locale;
  37 import java.util.PropertyResourceBundle;
  38 import java.util.ResourceBundle;
  39 import static sun.security.util.SecurityConstants.GET_CLASSLOADER_PERMISSION;
  40 
  41 /**
  42  * {@code AbstractResourceBundleProvider} is an abstract class that provides
  43  * the basic support for a provider implementation class for
  44  * {@link ResourceBundleProvider}.
  45  *
  46  * <p>
  47  * Resource bundles can be packaged in one or more
  48  * named modules, <em>service provider modules</em>.  The <em>consumer</em> of the
  49  * resource bundle is the one calling {@link ResourceBundle#getBundle(String)}.




   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.util.spi;
  27 
  28 import jdk.internal.access.JavaUtilResourceBundleAccess;
  29 import jdk.internal.access.SharedSecrets;
  30 
  31 import java.io.IOException;
  32 import java.io.InputStream;
  33 import java.io.UncheckedIOException;
  34 import java.security.AccessController;
  35 import java.security.PrivilegedAction;
  36 import java.util.Locale;
  37 import java.util.PropertyResourceBundle;
  38 import java.util.ResourceBundle;
  39 import static sun.security.util.SecurityConstants.GET_CLASSLOADER_PERMISSION;
  40 
  41 /**
  42  * {@code AbstractResourceBundleProvider} is an abstract class that provides
  43  * the basic support for a provider implementation class for
  44  * {@link ResourceBundleProvider}.
  45  *
  46  * <p>
  47  * Resource bundles can be packaged in one or more
  48  * named modules, <em>service provider modules</em>.  The <em>consumer</em> of the
  49  * resource bundle is the one calling {@link ResourceBundle#getBundle(String)}.


< prev index next >