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

fr.insee.vtl.prov.model.Activity Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
package fr.insee.vtl.prov.model;

public class Activity {

    private String name;
    //TODO: to handle later
    //private List used;
    private String label;

    public Activity(String name, String label) {
        this.name = name;
        this.label = label;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getLabel() {
        return label;
    }

    public void setLabel(String label) {
        this.label = label;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy