eu.xenit.apix.node.NodeAssociations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apix-interface Show documentation
Show all versions of apix-interface Show documentation
Xenit API-X Java interface
package eu.xenit.apix.node;
import java.util.List;
/**
* Datastructure that represents a list of NodeAssociations.
*/
public class NodeAssociations {
private List children;
private List parents;
private List targets;
private List sources;
public NodeAssociations() {
}
public NodeAssociations(List children, List parents,
List targets, List sources) {
this.children = children;
this.parents = parents;
this.targets = targets;
this.sources = sources;
}
public List getChildren() {
return children;
}
public void setChildren(List children) {
this.children = children;
}
public List getParents() {
return parents;
}
public void setParents(List parents) {
this.parents = parents;
}
public List getTargets() {
return targets;
}
public void setTargets(List targets) {
this.targets = targets;
}
public List getSources() {
return sources;
}
public void setSources(List sources) {
this.sources = sources;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy