blob: 9a1e021f7ed2f19bc4b05ff307d3e0bc166fbd00 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Dirk Fauth and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Dirk Fauth <dirk.fauth@gmail.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.nebula.widgets.nattable.extension.glazedlists.hideshow;
import org.eclipse.nebula.widgets.nattable.command.AbstractLayerCommandHandler;
import org.eclipse.nebula.widgets.nattable.hideshow.command.ShowAllRowsCommand;
/**
* Command handler to show all rows again that are currently hidden in the context of
* using GlazedLists.
*
* @author Dirk Fauth
*
*/
public class GlazedListsShowAllRowsCommandHandler<T> extends AbstractLayerCommandHandler<ShowAllRowsCommand> {
/**
* The {@link GlazedListsRowHideShowLayer} where this command handler should operate on.
*/
private final GlazedListsRowHideShowLayer<T> rowHideShowLayer;
/**
*
* @param rowHideShowLayer The {@link GlazedListsRowHideShowLayer} to operate on.
*/
public GlazedListsShowAllRowsCommandHandler(GlazedListsRowHideShowLayer<T> rowHideShowLayer) {
this.rowHideShowLayer = rowHideShowLayer;
}
@Override
public Class<ShowAllRowsCommand> getCommandClass() {
return ShowAllRowsCommand.class;
}
@Override
protected boolean doCommand(ShowAllRowsCommand command) {
rowHideShowLayer.showAllRows();
return true;
}
}