jdk/test/java/util/ResourceBundle/modules/appbasic/src/test/jdk/test/resources/MyResourcesProviderImpl.java
author naoto
Thu, 01 Jun 2017 14:52:53 -0700
changeset 45439 5673d77a787b
parent 38782 ff27bc5c278e
permissions -rw-r--r--
8180375: Rename <baseName>Provider to <packagename>.spi.<simpleName>Provider Reviewed-by: mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
45439
5673d77a787b 8180375: Rename <baseName>Provider to <packagename>.spi.<simpleName>Provider
naoto
parents: 38782
diff changeset
     2
 * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * accompanied this code).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * questions.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    23
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    24
package jdk.test.resources;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    25
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    26
import java.util.Locale;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    27
import java.util.ResourceBundle;
38782
ff27bc5c278e 8158604: test/java/util/ResourceBundle/modules/appbasic missing @test
mchung
parents: 36511
diff changeset
    28
import java.util.spi.AbstractResourceBundleProvider;
45439
5673d77a787b 8180375: Rename <baseName>Provider to <packagename>.spi.<simpleName>Provider
naoto
parents: 38782
diff changeset
    29
import jdk.test.resources.spi.MyResourcesProvider;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
38782
ff27bc5c278e 8158604: test/java/util/ResourceBundle/modules/appbasic missing @test
mchung
parents: 36511
diff changeset
    31
public class MyResourcesProviderImpl extends AbstractResourceBundleProvider
ff27bc5c278e 8158604: test/java/util/ResourceBundle/modules/appbasic missing @test
mchung
parents: 36511
diff changeset
    32
    implements MyResourcesProvider
ff27bc5c278e 8158604: test/java/util/ResourceBundle/modules/appbasic missing @test
mchung
parents: 36511
diff changeset
    33
{
ff27bc5c278e 8158604: test/java/util/ResourceBundle/modules/appbasic missing @test
mchung
parents: 36511
diff changeset
    34
    public MyResourcesProviderImpl() {
ff27bc5c278e 8158604: test/java/util/ResourceBundle/modules/appbasic missing @test
mchung
parents: 36511
diff changeset
    35
        super("java.class");
ff27bc5c278e 8158604: test/java/util/ResourceBundle/modules/appbasic missing @test
mchung
parents: 36511
diff changeset
    36
    }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
    @Override
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
    public ResourceBundle getBundle(String baseName, Locale locale) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
        if (locale.equals(Locale.ENGLISH) || locale.equals(Locale.ROOT)) {
38782
ff27bc5c278e 8158604: test/java/util/ResourceBundle/modules/appbasic missing @test
mchung
parents: 36511
diff changeset
    40
            return super.getBundle(baseName, locale);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
        return null;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
}