package mit.sql.event ;

public interface TableRaiser
extends mit.event.Raiser
{
	String getColumnName() ;
	void setColumnName( String columnName ) ;

	String getCell() ;
	void setCell( String cell ) ;

	int getRow() ;
	void setRow( int row ) ;
}