blob: 30f28b71b293abb3777774d99e19e38ddfddcdf0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 vogella GmbH.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Simon Scholz <simon.scholz@vogella.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.tools.preference.spy.handler;
import org.eclipse.e4.core.di.annotations.Execute;
import org.eclipse.e4.tools.preference.spy.parts.TreeViewerPart;
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
public class CollapseAllHandler {
@Execute
public void execute(MPart part) {
Object partImpl = part.getObject();
if (partImpl instanceof TreeViewerPart) {
((TreeViewerPart) partImpl).getViewer().collapseAll();
}
}
}