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

net.sf.doolin.tabular.support.AbstractTabularColumn Maven / Gradle / Ivy

Go to download

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