src/share/classes/com/sun/corba/se/impl/orbutil/CorbaResourceUtil.java

Tue, 28 Dec 2010 15:52:36 -0800

author
ohair
date
Tue, 28 Dec 2010 15:52:36 -0800
changeset 240
f90b3e014e83
parent 173
032585ad970d
child 748
6845b95cba6b
permissions
-rw-r--r--

6962318: Update copyright year
Reviewed-by: xdono

duke@1 1 /*
ohair@240 2 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
ohair@158 7 * published by the Free Software Foundation. Oracle designates this
duke@1 8 * particular file as subject to the "Classpath" exception as provided
ohair@158 9 * by Oracle in the LICENSE file that accompanied this code.
duke@1 10 *
duke@1 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 * accompanied this code).
duke@1 16 *
duke@1 17 * You should have received a copy of the GNU General Public License version
duke@1 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 *
ohair@158 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@158 22 * or visit www.oracle.com if you need additional information or have any
ohair@158 23 * questions.
duke@1 24 */
duke@1 25
duke@1 26 package com.sun.corba.se.impl.orbutil;
duke@1 27
duke@1 28 import java.util.ResourceBundle;
duke@1 29 import java.util.MissingResourceException;
duke@1 30
duke@1 31 public class CorbaResourceUtil {
duke@1 32 public static String getString(String key) {
duke@1 33 if (!resourcesInitialized) {
duke@1 34 initResources();
duke@1 35 }
duke@1 36
duke@1 37 try {
duke@1 38 return resources.getString(key);
duke@1 39 } catch (MissingResourceException ignore) {
duke@1 40 }
duke@1 41 return null;
duke@1 42 }
duke@1 43
duke@1 44 public static String getText(String key) {
duke@1 45 String message = getString(key);
duke@1 46 if (message == null) {
duke@1 47 message = "no text found: \"" + key + "\"";
duke@1 48 }
duke@1 49 return message;
duke@1 50 }
duke@1 51
duke@1 52 public static String getText(String key, int num) {
duke@1 53 return getText(key, Integer.toString(num), null, null);
duke@1 54 }
duke@1 55
duke@1 56 public static String getText(String key, String arg0) {
duke@1 57 return getText(key, arg0, null, null);
duke@1 58 }
duke@1 59
duke@1 60 public static String getText(String key, String arg0, String arg1) {
duke@1 61 return getText(key, arg0, arg1, null);
duke@1 62 }
duke@1 63
duke@1 64 public static String getText(String key,
duke@1 65 String arg0, String arg1, String arg2)
duke@1 66 {
duke@1 67 String format = getString(key);
duke@1 68 if (format == null) {
duke@1 69 format = "no text found: key = \"" + key + "\", " +
duke@1 70 "arguments = \"{0}\", \"{1}\", \"{2}\"";
duke@1 71 }
duke@1 72
duke@1 73 String[] args = new String[3];
duke@1 74 args[0] = (arg0 != null ? arg0.toString() : "null");
duke@1 75 args[1] = (arg1 != null ? arg1.toString() : "null");
duke@1 76 args[2] = (arg2 != null ? arg2.toString() : "null");
duke@1 77
jjg@173 78 return java.text.MessageFormat.format(format, (Object[]) args);
duke@1 79 }
duke@1 80
duke@1 81 private static boolean resourcesInitialized = false;
duke@1 82 private static ResourceBundle resources;
duke@1 83
duke@1 84 private static void initResources() {
duke@1 85 try {
duke@1 86 resources =
duke@1 87 ResourceBundle.getBundle("com.sun.corba.se.impl.orbutil.resources.sunorb");
duke@1 88 resourcesInitialized = true;
duke@1 89 } catch (MissingResourceException e) {
duke@1 90 throw new Error("fatal: missing resource bundle: " +
duke@1 91 e.getClassName());
duke@1 92 }
duke@1 93 }
duke@1 94
duke@1 95 }

mercurial