Uses of Interface
org.apache.pivot.collections.Group

Packages that use Group
org.apache.pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
org.apache.pivot.collections.adapter Provides a set of collection implementations that are backed by java.util collections. 
org.apache.pivot.collections.concurrent Contains a set of thread-safe collection implementations. 
org.apache.pivot.collections.immutable Contains a set of read-only collection implementations. 
org.apache.pivot.util.concurrent Provides a set of classes to simplify the execution of background tasks. 
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
 

Uses of Group in org.apache.pivot.collections
 

Subinterfaces of Group in org.apache.pivot.collections
 interface Set<E>
          Collection interface representing a group of unique elements.
 

Classes in org.apache.pivot.collections that implement Group
 class EnumSet<E extends Enum<E>>
          Implementation of the Set interface that is backed by an array of enum values.
 class HashSet<E>
          Implementation of the Set interface that is backed by a hash table.
 

Uses of Group in org.apache.pivot.collections.adapter
 

Classes in org.apache.pivot.collections.adapter that implement Group
 class SetAdapter<E>
          Implementation of the Set interface that is backed by an instance of Set.
 

Uses of Group in org.apache.pivot.collections.concurrent
 

Classes in org.apache.pivot.collections.concurrent that implement Group
 class SynchronizedSet<E>
          Synchronized implementation of the Set interface.
 

Uses of Group in org.apache.pivot.collections.immutable
 

Classes in org.apache.pivot.collections.immutable that implement Group
 class ImmutableSet<E>
          Unmodifiable implementation of the Set interface.
 

Uses of Group in org.apache.pivot.util.concurrent
 

Classes in org.apache.pivot.util.concurrent that implement Group
 class TaskGroup
          Task that runs a group of tasks in parallel and notifies listeners when all tasks are complete.
 

Uses of Group in org.apache.pivot.wtk
 

Classes in org.apache.pivot.wtk that implement Group
 class ButtonGroup
          Class representing a toggle button group.
 class RadioButtonGroup
          Extension of ButtonGroup providing keyboard navigation within the group and modified focus navigation that treats the group as a single focusable entity.