public Set<String> queryBugConfigsByDomain(String domain) {
Set<String> result = m_configs.get(domain);
if (result == null) {
result = new HashSet<String>();
Domain config = m_bugConfig.findDomain(domain);
if (config == null) {
result = new HashSet<String>(m_bugConfig.getExceptions());
} else {
if (config.getAdditivity() == true) {
result.addAll(m_bugConfig.getExceptions());
result.addAll(config.getExceptions());
} else {
result = new HashSet<String>(config.getExceptions());
}
}
m_configs.put(domain, result);
}
return result;