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

fr.lteconsulting.hexa.client.tools.IdColumn Maven / Gradle / Ivy

The newest version!
package fr.lteconsulting.hexa.client.tools;

import fr.lteconsulting.hexa.client.interfaces.IHasIntegerId;
import fr.lteconsulting.hexa.client.ui.miracle.Printer;
import fr.lteconsulting.hexa.client.ui.tools.ROColumnMng;

public class IdColumn extends ROColumnMng
{
	public IdColumn()
	{
		this( "Id" );
	}
	
	public IdColumn( String title )
	{
		super( title );
	}

	@Override
	public void fillCell( Printer printer, T record )
	{
		printer.setText( String.valueOf( record.getId() ) );
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy