Uses of Interface
org.apache.pivot.collections.Group
-
Packages that use Group Package Description 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 byjava.utilcollections.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 Modifier and Type Interface Description interfaceSet<E>Collection interface representing a group of unique elements.Classes in org.apache.pivot.collections that implement Group Modifier and Type Class Description classEnumSet<E extends java.lang.Enum<E>>Implementation of theSetinterface that is backed by an array of enum values.classHashSet<E>Implementation of theSetinterface 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 Modifier and Type Class Description classSetAdapter<E>Implementation of theSetinterface that is backed by an instance ofSet. -
Uses of Group in org.apache.pivot.collections.concurrent
Classes in org.apache.pivot.collections.concurrent that implement Group Modifier and Type Class Description classSynchronizedSet<E>Synchronized implementation of theSetinterface. -
Uses of Group in org.apache.pivot.collections.immutable
Classes in org.apache.pivot.collections.immutable that implement Group Modifier and Type Class Description classImmutableSet<E>Unmodifiable implementation of theSetinterface. -
Uses of Group in org.apache.pivot.util.concurrent
Classes in org.apache.pivot.util.concurrent that implement Group Modifier and Type Class Description classTaskGroupTaskthat 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 Modifier and Type Class Description classButtonGroupClass representing a toggle button group.classRadioButtonGroupExtension ofButtonGroupproviding keyboard navigation within the group and modified focus navigation that treats the group as a single focusable entity.
UPandLEFTSelect the previous button
DOWNandRIGHTSelect the next button
HOMESelect the first button
ENDSelect the last button
(Note that onlyfocusablebuttons are considered when searching for a Button to select)
When a button within the group is focused and key is typed, an attempt is made to find the next button (default) or previous button (when the SHIFT modifier is pressed) whose renderer text starts with the typed character.
-