src/main/java/de/unixwork/uwproj/NamedDependency.java

changeset 0
38775db5fdf5
child 40
b42bfc9e9983
--- /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;
+    }
+}

mercurial