/******************************************************************************* * Copyright (c) 2009 STMicroelectronics. * 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: * Marzia Maugeri <marzia.maugeri@st.com> - initial API and implementation *******************************************************************************/ package org.eclipse.linuxtools.dataviewers.actions; import java.util.Iterator; import org.eclipse.jface.action.Action; import org.eclipse.jface.viewers.AbstractTreeViewer; import org.eclipse.jface.viewers.TreeSelection; import org.eclipse.linuxtools.dataviewers.STDataViewersActivator; import org.eclipse.linuxtools.dataviewers.abstractviewers.AbstractSTTreeViewer; import org.eclipse.linuxtools.dataviewers.abstractviewers.STDataViewersMessages; import org.eclipse.ui.plugin.AbstractUIPlugin; /** * This action expands the selected items of the tree * */ public class STExpandSelectionAction extends Action { private final AbstractSTTreeViewer stViewer; /** * Constructor * * @param stViewer * the stViewer to expand */ public STExpandSelectionAction(AbstractSTTreeViewer stViewer) { super(STDataViewersMessages.expandSelectionAction_title, AbstractUIPlugin.imageDescriptorFromPlugin(STDataViewersActivator.PLUGIN_ID, "icons/expand_all.gif")); //$NON-NLS-1$ this.stViewer = stViewer; } @Override public void run() { TreeSelection selection = (TreeSelection) stViewer.getViewer().getSelection(); if (selection != null && selection != TreeSelection.EMPTY) { for (Iterator<?> itSel = selection.iterator(); itSel.hasNext();) { stViewer.getViewer().expandToLevel(itSel.next(), AbstractTreeViewer.ALL_LEVELS); } } } }