< prev index next >

src/java.base/share/classes/sun/util/locale/provider/AuxLocaleProviderAdapter.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 43,52 **** --- 43,53 ---- import java.util.spi.CalendarNameProvider; import java.util.spi.CurrencyNameProvider; import java.util.spi.LocaleNameProvider; import java.util.spi.LocaleServiceProvider; import java.util.spi.TimeZoneNameProvider; + import sun.text.spi.JavaTimeDateTimePatternProvider; import sun.util.spi.CalendarProvider; /** * An abstract parent class for the * HostLocaleProviderAdapter/SPILocaleProviderAdapter.
*** 154,163 **** --- 155,169 ---- @Override public LocaleResources getLocaleResources(Locale locale) { return null; } + @Override + public JavaTimeDateTimePatternProvider getJavaTimeDateTimePatternProvider() { + return getLocaleServiceProvider(JavaTimeDateTimePatternProvider.class); + } + private static Locale[] availableLocales = null; @Override public Locale[] getAvailableLocales() { if (availableLocales == null) {
< prev index next >