blob: c085ffe77982f71393198bcd2f34d38853f92b95 [file] [log] [blame]
package org.eclipse.jface.viewers;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* A listener which is notified when a viewer's selection changes.
*
* @see ISelection
* @see ISelectionProvider
* @see SelectionChangedEvent
*/
public interface ISelectionChangedListener {
/**
* Notifies that the selection has changed.
*
* @param event event object describing the change
*/
public void selectionChanged(SelectionChangedEvent event);
}