Package autotest.afe

Source Code of autotest.afe.CheckBoxPanelDisplay

package autotest.afe;

import autotest.afe.ICheckBox.CheckBoxImpl;

import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.FlexTable;

public class CheckBoxPanelDisplay extends Composite implements CheckBoxPanel.Display {
    private int numColumns;
    private FlexTable table = new FlexTable();

    public CheckBoxPanelDisplay(int numColumns) {
        this.numColumns = numColumns;
        initWidget(table);
    }

    public ICheckBox generateCheckBox(int index) {
        CheckBoxImpl checkbox = new CheckBoxImpl();

        int row = index / numColumns;
        int col = index % numColumns;
        table.setWidget(row, col, checkbox);

        return checkbox;
    }
}
TOP

Related Classes of autotest.afe.CheckBoxPanelDisplay

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.