001package jmri.util.swing; 002 003/** 004 * Interface to label a JTable DataModel that 005 * has a method for resizing. 006 * 007 * @see MultiLineCellEditor 008 */ 009 010public interface ResizableRowDataModel { 011 012 void resizeRowToText(int modelRow, int numberOfLines); 013 014}