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

com.github.bordertech.wcomponents.addons.table.AbstractTableEditableColumn Maven / Gradle / Ivy

There is a newer version: 1.0.6-beta-1
Show newest version
package com.github.bordertech.wcomponents.addons.table;

import com.github.bordertech.wcomponents.WComponent;
import com.github.bordertech.wcomponents.WTextField;
import java.util.Comparator;

/**
 * Editable column that defaults to a TextField instead of a WText.
 *
 * @param  the columns value type
 * @param  the row bean type
 * @author Jonathan Austin
 * @since 1.0.0
 */
public abstract class AbstractTableEditableColumn extends AbstractTableColumn {

	/**
	 * @param label the column label
	 */
	public AbstractTableEditableColumn(final String label) {
		this(label, new WTextField());
	}

	/**
	 * @param label the column label
	 * @param renderer the column renderer
	 */
	public AbstractTableEditableColumn(final String label, final WComponent renderer) {
		this(label, renderer, null);
	}

	/**
	 * @param label the column label
	 * @param renderer the column renderer
	 * @param comparator the column comparator
	 */
	public AbstractTableEditableColumn(final String label, final WComponent renderer, final Comparator comparator) {
		this(null, label, renderer, comparator);
	}

	/**
	 * @param columnId the column id
	 * @param label the column label
	 * @param renderer the column renderer
	 * @param comparator the column comparator
	 */
	public AbstractTableEditableColumn(final String columnId, final String label, final WComponent renderer,
			final Comparator comparator) {
		super(columnId, label, renderer, comparator);
		// Set editable to true
		setEditable(true);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy