/******************************************************************************* * Copyright (c) 2007 IBM Corporation 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.ui.tests.views.properties.tabbed.override.folders; import org.eclipse.ui.tests.views.properties.tabbed.override.items.IOverrideTestsItem; /** * An item selection listener. * <p> * The OverrideTestsTabFolderPropertySheetPage example is a before look at the * properties view before the migration to the tabbed properties view and the * override tabs support. When elements are selected in the OverrideTestsView, * TabFolder/TabItem are displayed for the elements. * * @author Anthony Hunter * @since 3.4 */ public interface IOverrideTestsTabItemSelectionListener { /** * Notifies this listener that the selected item has changed. * * @param key * the name of the selected item. */ public void itemSelected(IOverrideTestsItem item); }