* @return <code>true</code> if the command has been handled,
* <code>false</code> otherwise
*/
protected boolean handleRowResizeCommand(RowResizeCommand command) {
if (isRowPositionFullySelected(command.getRowPosition())) {
return super.doCommand(new MultiRowResizeCommand(this,
selectionModel
.getFullySelectedRowPositions(getColumnCount()),
command.getNewHeight()));
} else {
return super.doCommand(command);