/******************************************************************************* * 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 - initial API and implementation *******************************************************************************/ package org.simantics.browsing.ui.nattable.override; import org.eclipse.nebula.widgets.nattable.command.ILayerCommandHandler; import org.eclipse.nebula.widgets.nattable.layer.ILayer; import org.eclipse.nebula.widgets.nattable.tree.TreeLayer; import org.eclipse.nebula.widgets.nattable.tree.command.TreeExpandAllCommand; /** * Command handler for the TreeExpandAllCommand. *

* Will search over the whole tree structure in the associated TreeLayer to * identify expandable nodes and expand them one after the other. * * @author Dirk Fauth * * @see TreeLayer * @see TreeExpandAllCommand * */ public class TreeExpandAllCommandHandler implements ILayerCommandHandler { /** * The TreeLayer to which this command handler is connected. */ private final TreeLayer2 treeLayer; /** * * @param treeLayer * The TreeLayer to which this command handler should be * connected. */ public TreeExpandAllCommandHandler(TreeLayer2 treeLayer) { this.treeLayer = treeLayer; } @Override public boolean doCommand(ILayer targetLayer, TreeExpandAllCommand command) { this.treeLayer.expandAll(); return true; } @Override public Class getCommandClass() { return TreeExpandAllCommand.class; } }