fr.insee.vtl.prov.model.Activity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vtl-prov Show documentation
Show all versions of vtl-prov Show documentation
Provenance static analysis
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;
}
}