return configs_.values();
}
private void parseConfiguration(InputStream is) throws Exception
{
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setIgnoringComments(true);
factory.setCoalescing(true);
factory.setNamespaceAware(false);
factory.setValidating(false);
DocumentBuilder parser = factory.newDocumentBuilder();
Document document = parser.parse(is);
NodeList nodes = document.getElementsByTagName("locale-config");
for (int i = 0; i < nodes.getLength(); i++)
{
Node node = nodes.item(i);