com.smartlogic.classificationserver.client.MetadataHoldingObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Semaphore-CS-Client Show documentation
Show all versions of Semaphore-CS-Client Show documentation
Client for the Smartlogic Semaphore Classification Server
package com.smartlogic.classificationserver.client;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Map;
import java.util.TreeMap;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
public class MetadataHoldingObject extends XMLReader {
private Map> metaNodes = new TreeMap>();
protected void addMetaNode(Element metaElement) {
String name = metaElement.getAttribute("name");
String value = metaElement.getAttribute("value");
String score = metaElement.getAttribute("score");
MetaNode metaNode = new MetaNode(name, value, score);
Collection metaNodesForName = metaNodes.get(name);
if (metaNodesForName == null) {
metaNodesForName = new ArrayList();
metaNodes.put(name, metaNodesForName);
}
metaNodesForName.add(metaNode);
NodeList nodeList = metaElement.getChildNodes();
if (nodeList == null) return;
for (int n = 0; n < nodeList.getLength(); n++) {
Node childNode = nodeList.item(n);
if (childNode.getNodeType() == Node.ELEMENT_NODE) {
Element childElement = (Element)childNode;
if ("META".equals(childElement.getNodeName())) {
metaNode.addMetaNode(childElement);
}
}
}
}
public Map> getMetaNodes() {
return metaNodes;
}
}