package logbook.gui.logic;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableItem;
/**
* テーブルの行を作成するインターフェイスです
*
*/
public interface TableItemCreator {
void init();
TableItem create(Table table, String[] text, int count);
}