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

Packages that use Stack
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.concurrent Contains a set of thread-safe collection implementations. 
 

Uses of Stack in org.apache.pivot.collections
 

Classes in org.apache.pivot.collections that implement Stack
 class ArrayStack<T>
          Implementation of the Stack interface that is backed by an array.
 class LinkedStack<T>
          Implementation of the Stack interface that is backed by a linked list.
 

Methods in org.apache.pivot.collections with parameters of type Stack
 void Stack.StackListenerList.comparatorChanged(Stack<T> stack, Comparator<T> previousComparator)
           
 void StackListener.comparatorChanged(Stack<T> stack, Comparator<T> previousComparator)
          Called when a stack's comparator has changed.
 void StackListener.Adapter.comparatorChanged(Stack<T> stack, Comparator<T> previousComparator)
           
 void Stack.StackListenerList.itemPopped(Stack<T> stack, T item)
           
 void StackListener.itemPopped(Stack<T> stack, T item)
          Called when an item has been popped off of a stack.
 void StackListener.Adapter.itemPopped(Stack<T> stack, T item)
           
 void Stack.StackListenerList.itemPushed(Stack<T> stack, T item)
           
 void StackListener.itemPushed(Stack<T> stack, T item)
          Called when an item has been pushed onto a stack.
 void StackListener.Adapter.itemPushed(Stack<T> stack, T item)
           
 void Stack.StackListenerList.stackCleared(Stack<T> stack)
           
 void StackListener.stackCleared(Stack<T> stack)
          Called when a stack has been cleared.
 void StackListener.Adapter.stackCleared(Stack<T> stack)
           
 

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

Classes in org.apache.pivot.collections.concurrent that implement Stack
 class SynchronizedStack<T>
          Synchronized implementation of the Stack interface.
 

Constructors in org.apache.pivot.collections.concurrent with parameters of type Stack
SynchronizedStack(Stack<T> stack)