currentState = columnChange.processEvent(event);
} else if (attrName.equals(FormatComposite.ROWS_ATTR_NAME)) {
// See the comment above for the "columns" attribute.
GridModifierState rowChange =
new RowChangeState(this);
rowChange.setNextState(currentState);
currentState = rowChange.processEvent(event);
}
}
}