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

changeset 0
38775db5fdf5
child 40
b42bfc9e9983
equal deleted inserted replaced
-1:000000000000 0:38775db5fdf5
1 /*
2 * To change this license header, choose License Headers in Project Properties.
3 * To change this template file, choose Tools | Templates
4 * and open the template in the editor.
5 */
6 package de.unixwork.uwproj;
7
8 import java.util.List;
9
10 /**
11 *
12 * @author olaf
13 */
14 public class NamedDependency {
15 private String name;
16 private List<Dependency> subdependencies;
17
18 public String getName() {
19 return name;
20 }
21
22 public void setName(String name) {
23 this.name = name;
24 }
25
26 public List<Dependency> getSubdependencies() {
27 return subdependencies;
28 }
29
30 public void setSubdependencies(List<Dependency> subdependency) {
31 this.subdependencies = subdependency;
32 }
33 }

mercurial