blob: 71e5db9a755d20418d3e2b58668913cbcc05ce34 [file] [log] [blame]
package org.eclipse.jface.viewers;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Interface for a selection.
*
* @see ISelectionProvider
* @see ISelectionChangedListener
* @see SelectionChangedEvent
*/
public interface ISelection {
/**
* Returns whether this selection is empty.
*
* @return <code>true</code> if this selection is empty,
* and <code>false</code> otherwise
*/
public boolean isEmpty();
}