
goal.util.datatable.Column Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime Show documentation
Show all versions of runtime Show documentation
A system for running GOAL multi-agent systems.
The newest version!
package goal.util.datatable;
/**
* Prototype column description for Data Table.
*/
public class Column {
private String description;
public Column(String name) {
this.description = name;
}
public String getDescription() {
return this.description;
}
@Override
public String toString() {
return this.description;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy