Examples of UnFreezeGridCommand


Examples of org.eclipse.nebula.widgets.nattable.freeze.command.UnFreezeGridCommand

import org.eclipse.swt.events.KeyEvent;

public class UnFreezeGridAction implements IKeyAction {

    public void run(NatTable natTable, KeyEvent event) {
        natTable.doCommand(new UnFreezeGridCommand());
    }
View Full Code Here

Examples of org.eclipse.nebula.widgets.nattable.freeze.command.UnFreezeGridCommand

        this.dataLayer.fireLayerEvent(new RowInsertEvent(this.dataLayer, new Range(0, 2)));
        reset();
    }

    private void reset() {
        this.compositeFreezeLayer.doCommand(new UnFreezeGridCommand());

        assertEquals(0, this.freezeLayer.getColumnCount());
        assertEquals(0, this.freezeLayer.getRowCount());
        assertEquals(-1, this.freezeLayer.getBottomRightPosition().columnPosition);
        assertEquals(-1, this.freezeLayer.getBottomRightPosition().rowPosition);
View Full Code Here
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.