Class StructuredSelection

java.lang.Object
org.eclipse.jface.viewers.StructuredSelection
All Implemented Interfaces:
Iterable, ISelection, IStructuredSelection
Direct Known Subclasses:
TreeSelection

@NoExtend public class StructuredSelection extends Object implements IStructuredSelection
A concrete implementation of the IStructuredSelection interface, suitable for instantiating.

This class is not intended to be subclassed.

  • Field Details Link icon

    • EMPTY Link icon

      public static final StructuredSelection EMPTY
      The canonical empty selection. This selection should be used instead of null.
  • Constructor Details Link icon

    • StructuredSelection Link icon

      public StructuredSelection()
      Creates a new empty selection. See also the static field EMPTY which contains an empty selection singleton.
      See Also:
    • StructuredSelection Link icon

      public StructuredSelection(Object[] elements)
      Creates a structured selection from the given elements. The given element array must not be null.
      Parameters:
      elements - an array of elements
    • StructuredSelection Link icon

      public StructuredSelection(Object element)
      Creates a structured selection containing a single object. The object must not be null.
      Parameters:
      element - the element
    • StructuredSelection Link icon

      public StructuredSelection(List elements)
      Creates a structured selection from the given List.
      Parameters:
      elements - list of selected elements
    • StructuredSelection Link icon

      public StructuredSelection(List elements, IElementComparer comparer)
      Creates a structured selection from the given List and element comparer. If an element comparer is provided, it will be used to determine equality between structured selection objects provided that they both are based on the same (identical) comparer. See bug
      Parameters:
      elements - list of selected elements
      comparer - the comparer, or null
      Since:
      3.4
  • Method Details Link icon

    • equals Link icon

      public boolean equals(Object o)
      Returns whether this structured selection is equal to the given object. Two structured selections are equal if they contain the same elements in the same order.
      Overrides:
      equals in class Object
      Parameters:
      o - the other object
      Returns:
      true if they are equal, and false otherwise
    • hashCode Link icon

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getFirstElement Link icon

      public Object getFirstElement()
      Description copied from interface: IStructuredSelection
      Returns the first element in this selection, or null if the selection is empty.
      Specified by:
      getFirstElement in interface IStructuredSelection
      Returns:
      an element, or null if none
    • isEmpty Link icon

      public boolean isEmpty()
      Description copied from interface: ISelection
      Returns whether this selection is empty.
      Specified by:
      isEmpty in interface ISelection
      Returns:
      true if this selection is empty, and false otherwise
    • iterator Link icon

      public Iterator iterator()
      Description copied from interface: IStructuredSelection
      Returns an iterator over the elements of this selection.
      Specified by:
      iterator in interface IStructuredSelection
      Specified by:
      iterator in interface Iterable
      Returns:
      an iterator over the selected elements
    • size Link icon

      public int size()
      Description copied from interface: IStructuredSelection
      Returns the number of elements selected in this selection.
      Specified by:
      size in interface IStructuredSelection
      Returns:
      the number of elements selected
    • toArray Link icon

      public Object[] toArray()
      Description copied from interface: IStructuredSelection
      Returns the elements in this selection as an array.
      Specified by:
      toArray in interface IStructuredSelection
      Returns:
      the selected elements as an array
    • toList Link icon

      public List toList()
      Description copied from interface: IStructuredSelection
      Returns the elements in this selection as a List.
      Specified by:
      toList in interface IStructuredSelection
      Returns:
      the selected elements as a list
    • stream Link icon

      public Stream<Object> stream()
      Description copied from interface: IStructuredSelection
      Returns the elements in this selection as a Stream.
      Specified by:
      stream in interface IStructuredSelection
      Returns:
      the selected elements as a stream
    • toString Link icon

      public String toString()
      Internal method which returns a string representation of this selection suitable for debug purposes only.
      Overrides:
      toString in class Object
      Returns:
      debug string