01: /*******************************************************************************
02: * Copyright (c) 2005, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.internal.texteditor;
11:
12: import com.ibm.icu.text.MessageFormat;
13:
14: /**
15: * A number of routines used for string externalization.
16: *
17: * @since 3.1
18: */
19: public class NLSUtility {
20:
21: /**
22: * Formats the given string with the given argument.
23: *
24: * @param message the message to format, must not be <code>null</code>
25: * @param argument the argument used to format the string
26: * @return the formatted string
27: */
28: public static String format(String message, Object argument) {
29: return MessageFormat.format(message, new Object[] { argument });
30: }
31:
32: /**
33: * Formats the given string with the given argument.
34: *
35: * @param message the message to format, must not be <code>null</code>
36: * @param arguments the arguments used to format the string
37: * @return the formatted string
38: */
39: public static String format(String message, Object[] arguments) {
40: return MessageFormat.format(message, arguments);
41: }
42:
43: private NLSUtility() {
44: // Do not instantiate
45: }
46: }
|