1 24 package org.objectweb.dolphin.rcp; 25 26 import java.util.MissingResourceException ; 27 import java.util.ResourceBundle ; 28 29 33 public class Messages { 34 35 private static final String BUNDLE_NAME = "org.objectweb.dolphin.rcp.Dolphin"; 37 private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle 38 .getBundle(BUNDLE_NAME); 39 40 46 public static String getString(String key) { 47 try { 48 return RESOURCE_BUNDLE.getString(key); 49 } catch (MissingResourceException e) { 50 return '!' + key + '!'; 51 } 52 } 53 } 54 | Popular Tags |