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

eu.xenit.apix.node.NodeAssociations Maven / Gradle / Ivy

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