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

net.sf.doolin.tabular.model.TabularColumn Maven / Gradle / Ivy

Go to download

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