1 11 package org.eclipse.ui.internal.editors.text; 12 13 import com.ibm.icu.text.MessageFormat; 14 15 20 public class NLSUtility { 21 22 29 public static String format(String message, Object argument) { 30 return MessageFormat.format(message, new Object [] { argument }); 31 } 32 33 40 public static String format(String message, Object [] arguments) { 41 return MessageFormat.format(message, arguments); 42 } 43 44 private NLSUtility() { 45 } 47 } 48 | Popular Tags |