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

com.imsweb.validation.translation.EditTranslationResult Maven / Gradle / Ivy

Go to download

This project allows a Genedits Metafile to be translated into Groovy edits that can be executed in the SEER Validation framework.

The newest version!
/*
 * Copyright (C) 2016 Information Management Services, Inc.
 */
package com.imsweb.validation.translation;

import java.util.Map;

public class EditTranslationResult {

    private String _groovy;

    // keys are the table names, values are the indexes; fore each index: keys are the index names, values are the list of columns they use
    private Map _usedTablesAndIndexes;

    private String _translationErrorMessage;

    public String getGroovy() {
        return _groovy;
    }

    public void setGroovy(String groovy) {
        _groovy = groovy;
    }

    public Map getUsedTablesAndIndexes() {
        return _usedTablesAndIndexes;
    }

    public void setUsedTablesAndIndexes(Map usedTablesAndIndexes) {
        _usedTablesAndIndexes = usedTablesAndIndexes;
    }

    public String getTranslationErrorMessage() {
        return _translationErrorMessage;
    }

    public void setTranslationErrorMessage(String translationErrorMessage) {
        _translationErrorMessage = translationErrorMessage;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy