Package com.nexirius.ulc.example1.layout

Source Code of com.nexirius.ulc.example1.layout.ItemArrayLayout

package com.nexirius.ulc.example1.layout;

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));
    }
}
TOP

Related Classes of com.nexirius.ulc.example1.layout.ItemArrayLayout

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.