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

org.openl.rules.diff.xls.XlsProjection Maven / Gradle / Ivy

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

import java.util.List;

import org.openl.rules.diff.hierarchy.AbstractProjection;
import org.openl.rules.table.ICell;
import org.openl.rules.table.IOpenLTable;

public class XlsProjection extends AbstractProjection {
    private IOpenLTable table;
    private List diffCells;

    public XlsProjection(String name, XlsProjectionType type) {
        super(name, type.name());
    }

    public IOpenLTable getTable() {
        return table;
    }

    public void setTable(IOpenLTable table) {
        this.table = table;
    }

    public List getDiffCells() {
        return diffCells;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy