All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.smartlogic.classificationserver.client.MetadataHoldingObject Maven / Gradle / Ivy

There is a newer version: 5.6.1
Show newest version
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;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy