Package edu.isi.karma.rep.alignment

Examples of edu.isi.karma.rep.alignment.LabeledLink


    if (alignmentColumnNodes == null)
      return hNodeIdToDomainNodeMap;
    for (Node cNode : alignmentColumnNodes) {
      Set<LabeledLink> incomingLinks = alignment.getCurrentIncomingLinksToNode(cNode.getId());
      if (incomingLinks != null && !incomingLinks.isEmpty()) {
        LabeledLink incomingLink = alignment.getCurrentIncomingLinksToNode(cNode.getId()).iterator().next();
        if (incomingLink!= null && incomingLink.getSource() instanceof InternalNode) {
          hNodeIdToDomainNodeMap.put(((ColumnNode)cNode).getHNodeId()
              , (InternalNode)incomingLink.getSource());
        }
      }
     
    }
    return hNodeIdToDomainNodeMap;
View Full Code Here

TOP

Related Classes of edu.isi.karma.rep.alignment.LabeledLink

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.