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

Sat, 03 Aug 2019 13:46:43 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sat, 03 Aug 2019 13:46:43 +0200
changeset 7
686991ae6e2f
parent 0
38775db5fdf5
child 40
b42bfc9e9983
permissions
-rw-r--r--

add configureable make variables

/*
 * 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