X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/filters/FilterMessages.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/filters/FilterMessages.java index df8ba85..7ed3444 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/filters/FilterMessages.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/filters/FilterMessages.java @@ -16,9 +16,11 @@ import java.util.ResourceBundle; public class FilterMessages { - private static final String RESOURCE_BUNDLE= FilterMessages.class.getName(); + private static final String RESOURCE_BUNDLE = FilterMessages.class + .getName(); - private static ResourceBundle fgResourceBundle= ResourceBundle.getBundle(RESOURCE_BUNDLE); + private static ResourceBundle fgResourceBundle = ResourceBundle + .getBundle(RESOURCE_BUNDLE); private FilterMessages() { } @@ -30,15 +32,17 @@ public class FilterMessages { return "!" + key + "!";//$NON-NLS-2$ //$NON-NLS-1$ } } + /** * Gets a string from the resource bundle and formats it with the argument * - * @param key the string used to get the bundle value, must not be null + * @param key + * the string used to get the bundle value, must not be null */ public static String getFormattedString(String key, Object[] args) { - String format= null; + String format = null; try { - format= fgResourceBundle.getString(key); + format = fgResourceBundle.getString(key); } catch (MissingResourceException e) { return "!" + key + "!";//$NON-NLS-2$ //$NON-NLS-1$ } @@ -48,17 +52,18 @@ public class FilterMessages { /** * Gets a string from the resource bundle and formats it with the argument * - * @param key the string used to get the bundle value, must not be null + * @param key + * the string used to get the bundle value, must not be null */ public static String getFormattedString(String key, Object arg) { - String format= null; + String format = null; try { - format= fgResourceBundle.getString(key); + format = fgResourceBundle.getString(key); } catch (MissingResourceException e) { return "!" + key + "!";//$NON-NLS-2$ //$NON-NLS-1$ } if (arg == null) - arg= ""; //$NON-NLS-1$ + arg = ""; //$NON-NLS-1$ return MessageFormat.format(format, new Object[] { arg }); } }