blob: 48e34cf338e672a4a93eda2ffc536b288972b584 [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.AutoResizePositionsCommand;
public class MultiColumnAutoResizeCommandHandler extends AbstractLayerCommandHandler<AutoResizePositionsCommand> {
private final RDataLayer fDataLayer;
public MultiColumnAutoResizeCommandHandler(final RDataLayer dataLayer) {
this.fDataLayer= dataLayer;
}
@Override
public Class<AutoResizePositionsCommand> getCommandClass() {
return AutoResizePositionsCommand.class;
}
@Override
protected boolean doCommand(final AutoResizePositionsCommand command) {
for (final ILValueIterator posIter= new ValueIterator(command.getPositions()); posIter.hasNext(); ) {
this.fDataLayer.setColumnWidthToAutoWidth(posIter.nextValue());
}
return true;
}
}