net.sf.doolin.tabular.model.TabularColumn 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!
/*
* Created on Aug 14, 2007
*/
package net.sf.doolin.tabular.model;
/**
* Defines a column in a tabular model.
*
* @author Damien Coraboeuf
* @param
* Type of object per row
*/
public interface TabularColumn {
/**
* Returns the title of this column
*
* @return Title
*/
String getTitle();
/**
* Computes the column value for an item
*
* @param item
* Row item
* @return Value for this column
*/
Object getValue(T item);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy