org.openprovenance.prov.template.emitter.minilanguage.Parameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prov-template-compiler Show documentation
Show all versions of prov-template-compiler Show documentation
A template system for PROV bundles.
The newest version!
package org.openprovenance.prov.template.emitter.minilanguage;
public class Parameter {
public String name;
public String type;
public Parameter(String name, String type) {
this.name=name;
this.type=type;
}
@Override
public String toString() {
return "Parameter{" +
"name='" + name + '\'' +
", type='" + type + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy