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.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 Modifier and Type Interface Description interface
Set<E>
Collection interface representing a group of unique elements.Classes in org.apache.pivot.collections that implement Group Modifier and Type Class Description class
EnumSet<E extends java.lang.Enum<E>>
Implementation of theSet
interface that is backed by an array of enum values.class
HashSet<E>
Implementation of theSet
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 Modifier and Type Class Description class
SetAdapter<E>
Implementation of theSet
interface 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 class
SynchronizedSet<E>
Synchronized implementation of theSet
interface. -
Uses of Group in org.apache.pivot.collections.immutable
Classes in org.apache.pivot.collections.immutable that implement Group Modifier and Type Class Description class
ImmutableSet<E>
Unmodifiable implementation of theSet
interface. -
Uses of Group in org.apache.pivot.util.concurrent
Classes in org.apache.pivot.util.concurrent that implement Group Modifier and Type Class Description 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 Modifier and Type Class Description class
ButtonGroup
Class representing a toggle button group.class
RadioButtonGroup
Extension ofButtonGroup
providing keyboard navigation within the group and modified focus navigation that treats the group as a single focusable entity.
UP
andLEFT
Select the previous button
DOWN
andRIGHT
Select the next button
HOME
Select the first button
END
Select the last button
(Note that onlyfocusable
buttons 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.
-