blob: 091d04d0de9e92517708c508de86333c37b0b8e6 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2010, 2020 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.r.ui.intable;
import org.eclipse.statet.ecommons.waltable.command.AbstractLayerCommandHandler;
import org.eclipse.statet.ecommons.waltable.coordinate.ILValueIterator;
import org.eclipse.statet.ecommons.waltable.coordinate.LRangeList.ValueIterator;
import org.eclipse.statet.ecommons.waltable.resize.MultiColumnResizeCommand;
public class MultiColumnResizeCommandHandler extends AbstractLayerCommandHandler<MultiColumnResizeCommand> {
private final RDataLayer fDataLayer;
public MultiColumnResizeCommandHandler(final RDataLayer dataLayer) {
this.fDataLayer= dataLayer;
}
@Override
public Class<MultiColumnResizeCommand> getCommandClass() {
return MultiColumnResizeCommand.class;
}
@Override
protected boolean doCommand(final MultiColumnResizeCommand command) {
for (final ILValueIterator posIter= new ValueIterator(command.getPositions()); posIter.hasNext(); ) {
final long position= posIter.nextValue();
this.fDataLayer.setColumnWidth(position, command.getColumnWidth(position));
}
return true;
}
}