Package org.eclipse.nebula.widgets.nattable.reorder.command

Examples of org.eclipse.nebula.widgets.nattable.reorder.command.MultiColumnReorderCommand


    @Test
    public void shouldNotAllowMultiReorderIntoAnUnbreakableGroup()
            throws Exception {
        setGroupUnBreakable(11);

        MultiColumnReorderCommand reorderCommand = new MultiColumnReorderCommand(
                layer, Arrays.asList(5, 6), 11);
        layer.doCommand(reorderCommand);

        modelFixture.assertUnchanged();
    }
View Full Code Here


    @Test
    public void shouldNotAllowRemovalFromAColumnGroupDuringMultiColumnReorder()
            throws Exception {
        setGroupUnBreakable(4);

        MultiColumnReorderCommand reorderCommand = new MultiColumnReorderCommand(
                layer, Arrays.asList(4, 5), 6);
        layer.doCommand(reorderCommand);

        modelFixture.assertUnchanged();
    }
View Full Code Here

TOP

Related Classes of org.eclipse.nebula.widgets.nattable.reorder.command.MultiColumnReorderCommand

Copyright © 2018 www.massapicom. 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.