net.sf.doolin.tabular.support.AbstractTabularColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doolin-tabular Show documentation
Show all versions of doolin-tabular Show documentation
This Doolin GUI module is an extension that allows writing
tabular data (CSV, Excel).
The newest version!
package net.sf.doolin.tabular.support;
import net.sf.doolin.tabular.model.TabularColumn;
/**
* Defines the definition of a column with a title.
*
* @author Damien Coraboeuf
*
* @param
* Type of data for the rows.
*/
public abstract class AbstractTabularColumn implements TabularColumn {
private final String title;
/**
* Constructor.
*
* @param title
* Title for the column
*/
public AbstractTabularColumn(String title) {
this.title = title;
}
@Override
public String getTitle() {
return this.title;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy