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

org.openl.rules.diff.tree.DiffTreeNodeImpl Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
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