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