
org.openl.rules.diff.tree.DiffTreeNodeImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.openl.rules.diff Show documentation
Show all versions of org.openl.rules.diff Show documentation
API for comparing tables in Excel
package org.openl.rules.diff.tree;
import java.util.List;
public class DiffTreeNodeImpl implements DiffTreeNode {
private List children;
private DiffElement[] elements;
public List getChildren() {
return children;
}
public DiffElement[] getElements() {
return elements;
}
public void setChildren(List children) {
this.children = children;
}
public void setElements(DiffElement[] elements) {
this.elements = elements;
}
public DiffElement getElement(int idx) {
return elements[idx];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy