}
}
private void updateTransformation(Transformation tran) throws DeployException {
DeployDataStructureVisitor structureVisitor = new DeployDataStructureVisitor(tran, true);
DataStructure sourceStructure = tran.getInputStructure();
if (sourceStructure != null) {
structureVisitor.handle(sourceStructure);
structureVisitor.throwOnError();
}
DataStructure targetStructure = tran.getOutputStructure();
if (targetStructure != null) {
structureVisitor.setIsTarget();
structureVisitor.handle(targetStructure);
structureVisitor.throwOnError();
}