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

org.openl.rules.diff.xls2.DiffPair Maven / Gradle / Ivy

The newest version!
package org.openl.rules.diff.xls2;

import java.util.List;

import org.openl.rules.table.ICell;

public class DiffPair {
    private final XlsTable table1;
    private final XlsTable table2;
    private List diffCells1;
    private List diffCells2;

    public DiffPair(XlsTable table1, XlsTable table2) {
        this.table1 = table1;
        this.table2 = table2;
    }

    public XlsTable getTable1() {
        return table1;
    }

    public XlsTable getTable2() {
        return table2;
    }

    public List getDiffCells1() {
        return diffCells1;
    }

    public void setDiffCells1(List diffCells) {
        this.diffCells1 = diffCells;
    }

    public List getDiffCells2() {
        return diffCells2;
    }

    public void setDiffCells2(List diffCells) {
        this.diffCells2 = diffCells;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy