org.drools.runtime.pipeline.impl.Root Maven / Gradle / Ivy
package org.drools.runtime.pipeline.impl;
import java.util.List;
public class Root {
private List children;
public Root() {
}
public List getChildren() {
return children;
}
public void setChildren(List children) {
this.children = children;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy