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