import com.nexirius.framework.layout.TableLayoutItem;
import com.nexirius.framework.layout.TableColumnLayoutItem;
public class ItemArrayLayout extends TableLayoutItem {
public ItemArrayLayout() {
append(new TableColumnLayoutItem("stringField", "stringField", 150));
append(new TableColumnLayoutItem("intField", "intField", 50));
append(new TableColumnLayoutItem("doubleField", "doubleField", 50));
append(new TableColumnLayoutItem("booleanField", "booleanField", 30));
append(new TableColumnLayoutItem("dateField", "dateField", 30));
append(new TableColumnLayoutItem("comboBoxField", "comboBoxField", 30));
append(new TableColumnLayoutItem("timeField", "timeField", 30));
}