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

Examples of org.eclipse.nebula.widgets.nattable.group.command.RowGroupExpandCollapseCommand


import org.eclipse.swt.events.MouseEvent;

public class RowGroupExpandCollapseAction implements IMouseAction {

    public void run(NatTable natTable, MouseEvent event) {
        RowGroupExpandCollapseCommand command = new RowGroupExpandCollapseCommand(
                natTable, natTable.getRowPositionByY(event.y));
        natTable.doCommand(command);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.nebula.widgets.nattable.group.command.RowGroupExpandCollapseCommand

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.