use of com.ibm.uma.om.Export in project openj9 by eclipse.
the class ExportsParser method parse.
public static Exports parse(Node node, String containingFile) {
Exports exports = new Exports(containingFile);
NamedNodeMap attributes = node.getAttributes();
exports.setGroup(attributes.getNamedItem("group").getNodeValue());
NodeList nodeList = node.getChildNodes();
for (int j = 0; j < nodeList.getLength(); j++) {
Node item = nodeList.item(j);
if (item.getNodeName().equalsIgnoreCase("export")) {
Export export = ExportParser.parse(item, containingFile);
exports.addExport(export);
}
}
Parser.populatePredicateList(nodeList, exports);
return exports;
}
Aggregations