Package edu.isi.karma.rep.alignment

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


       
        if (ModelingConfiguration.getPropertiesSubClass() && !connected) {
          if (this.ontologyManager.isSubClass(sourceUri, targetUri, false) ||
              this.ontologyManager.isSubClass(targetUri, sourceUri, false)) {
            logger.debug( sourceUri + " and " + targetUri + " are connected by a subClassOf relation.");
            link = new CompactSubClassLink(id);
            addLink(source, target, link);
            connected = true;
          }
        }
       
View Full Code Here


      } else if (type == LinkType.SubClassLink) {
        l = new SubClassLink(id);
      } else if (type == LinkType.CompactObjectPropertyLink) {
        l = new CompactObjectPropertyLink(id, objectPropertyType);
      } else if (type == LinkType.CompactSubClassLink) {
        l = new CompactSubClassLink(id);
      } else {
        logger.error("cannot instanciate a link from the type: " + type.toString());
        return null;
      }
     
View Full Code Here

TOP

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

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.