< prev index next >

test/java/util/PluggableLocale/BreakIteratorProviderTest.java

Print this page


   1 /*
   2  * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


  72             // result object
  73             String[] result = new String[4];
  74             result[0] = BreakIterator.getCharacterInstance(target).getClass().getName();
  75             result[1] = BreakIterator.getWordInstance(target).getClass().getName();
  76             result[2] = BreakIterator.getLineInstance(target).getClass().getName();
  77             result[3] = BreakIterator.getSentenceInstance(target).getClass().getName();
  78 
  79             // provider's object (if any)
  80             String[] providersResult = new String[4];
  81             if (providerloc.contains(target)) {
  82                 providersResult[0] = bip.getCharacterInstance(target).getClass().getName();
  83                 providersResult[1] = bip.getWordInstance(target).getClass().getName();
  84                 providersResult[2] = bip.getLineInstance(target).getClass().getName();
  85                 providersResult[3] = bip.getSentenceInstance(target).getClass().getName();
  86             }
  87 
  88             // JRE
  89             String[] jresResult = new String[4];
  90             if (jreSupportsLocale) {
  91                 for (int i = 0; i < 4; i++) {
  92                     jresResult[i] = "sun.util.locale.provider."+classNames[i];
  93                 }
  94             }
  95 
  96             for (int i = 0; i < 4; i++) {
  97                 checkValidity(target, jresResult[i], providersResult[i], result[i], jreSupportsLocale);
  98             }
  99         }
 100     }
 101 }
   1 /*
   2  * Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


  72             // result object
  73             String[] result = new String[4];
  74             result[0] = BreakIterator.getCharacterInstance(target).getClass().getName();
  75             result[1] = BreakIterator.getWordInstance(target).getClass().getName();
  76             result[2] = BreakIterator.getLineInstance(target).getClass().getName();
  77             result[3] = BreakIterator.getSentenceInstance(target).getClass().getName();
  78 
  79             // provider's object (if any)
  80             String[] providersResult = new String[4];
  81             if (providerloc.contains(target)) {
  82                 providersResult[0] = bip.getCharacterInstance(target).getClass().getName();
  83                 providersResult[1] = bip.getWordInstance(target).getClass().getName();
  84                 providersResult[2] = bip.getLineInstance(target).getClass().getName();
  85                 providersResult[3] = bip.getSentenceInstance(target).getClass().getName();
  86             }
  87 
  88             // JRE
  89             String[] jresResult = new String[4];
  90             if (jreSupportsLocale) {
  91                 for (int i = 0; i < 4; i++) {
  92                     jresResult[i] = "sun.text." + classNames[i];
  93                 }
  94             }
  95 
  96             for (int i = 0; i < 4; i++) {
  97                 checkValidity(target, jresResult[i], providersResult[i], result[i], jreSupportsLocale);
  98             }
  99         }
 100     }
 101 }
< prev index next >