public PropertyMeanings loadPropertyMeanings()
throws ParserConfigurationException, SAXException, IOException {
Document dom = DomUtil.makeDomFromResourcePath("gpt/metadata/property-meanings.xml",false);
PropertyMeanings meanings = new PropertyMeanings();
try {
meanings.load(dom);
} catch (XPathExpressionException e) {
throw new IOException(
"An XPath expression failed while loading property-meanings.xml: "+e.getMessage());
}
return meanings;