--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/java/de/unixwork/uwproj/NamedDependency.java Mon Feb 04 15:09:39 2019 +0100 @@ -0,0 +1,33 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package de.unixwork.uwproj; + +import java.util.List; + +/** + * + * @author olaf + */ +public class NamedDependency { + private String name; + private List<Dependency> subdependencies; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public List<Dependency> getSubdependencies() { + return subdependencies; + } + + public void setSubdependencies(List<Dependency> subdependency) { + this.subdependencies = subdependency; + } +}