private static final String RESOURCE_BUNDLE = PHPUIMessages.class.getName();//$NON-NLS-1$
- private static ResourceBundle fgResourceBundle= ResourceBundle.getBundle(RESOURCE_BUNDLE);
+ private static ResourceBundle fgResourceBundle = ResourceBundle
+ .getBundle(RESOURCE_BUNDLE);
private PHPUIMessages() {
}
return '!' + key + '!';
}
}
-
+
public static String getFormattedString(String key, String arg) {
return getFormattedString(key, new String[] { arg });
}
-
+
public static String getFormattedString(String key, String[] args) {
- return MessageFormat.format(getString(key), args);
- }
-
+ return MessageFormat.format(getString(key), args);
+ }
+
}