The java org.eclipse.jface.viewers.IStructuredSelection interface is a part of the Eclipse JFace framework. It represents a selection of structured elements in a viewer. Structured elements are typically objects from a model or data source. This interface allows for accessing and manipulating the selected elements in a standardized way. It provides methods for getting the first selected element, retrieving all selected elements, and checking if the selection is empty. This interface is commonly used in conjunction with viewers in Eclipse-based applications to handle user selections in a consistent manner.
Java IStructuredSelection - 30 examples found. These are the top rated real world Java examples of org.eclipse.jface.viewers.IStructuredSelection extracted from open source projects. You can rate examples to help us improve the quality of examples.