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

goal.util.datatable.Column Maven / Gradle / Ivy

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