Package edu.isi.karma.modeling.alignment

Examples of edu.isi.karma.modeling.alignment.Alignment.align()


      } else {
        alignment.updateLiteralNode(nodeId, literalValue, literalType, isUri);
      }
     
      if(!this.isExecutedInBatch())
        alignment.align();
     
    } catch (Exception e) {
      logger.error("Error adding Literal Node:" , e);
      uc.add(new ErrorUpdate("Error adding Literal Node"));
      return uc;
View Full Code Here


      } else {
        // User-defined: do nothing
      }
    }
    if(!this.isExecutedInBatch())
      alignment.align();
   
    try {
      // Save the semantic types in the input parameter JSON
      saveSemanticTypesInformation(worksheet, workspace, worksheet.getSemanticTypes().getListOfTypes());
     
View Full Code Here

        uc.append(update);
    }
   
    Alignment alignment = AlignmentManager.Instance().getAlignment(workspace.getId(), worksheetId);
    if(alignment != null)
      alignment.align();
   
    return uc;
  }

  private UpdateContainer executeCommand(JSONObject commObject, boolean saveToHistory)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.