private static String getPrefsName(final Component component,
final String key)
{
final String name = component.getName();
if (name == null)
throw new ConfigException(
"Unable to save state of component with no name: "
+ component);
return name.toLowerCase(Locale.getDefault()) + "." +
key.toLowerCase(Locale.getDefault());
}