{
if (cacheCount.containsKey(name))
{
return cacheCount.get(name);
}
ChoiceAuthority ca = (ChoiceAuthority) PluginManager.getNamedPlugin(
ChoiceAuthority.class, RPAuthority.RP_AUTHORITY_NAME);
Choices choices = ca.getBestMatch(null, name, 0, null);
cacheCount.put(name, choices.total);
return choices.total;
}