Class parsing.Object_Stack
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class parsing.Object_Stack

java.lang.Object
   |
   +----parsing.Object_Vector
           |
           +----parsing.Object_Stack

public class Object_Stack
extends Object_Vector

Constructor Index

 o Object_Stack()

Method Index

 o clear()
 o depth()
 o empty()
 o ith(int)
 o peek()
 o pop()
 o popn(int)
 o popto(int)
 o push(Object)
 o search(Object)
 o top()
 o tth(int)

Constructors

 o Object_Stack
  public Object_Stack()

Methods

 o push
  public Object push(Object n)
 o pop
  public Object pop() throws EmptyStackException
 o peek
  public Object peek() throws EmptyStackException
 o empty
  public boolean empty()
 o search
  public int search(Object n)
 o clear
  public void clear()
 o popn
  public void popn(int n) throws EmptyStackException
 o popto
  public void popto(int n) throws EmptyStackException
 o ith
  public Object ith(int i) throws EmptyStackException
 o depth
  public int depth()
 o tth
  public Object tth(int i) throws EmptyStackException
 o top
  public Object top() throws EmptyStackException

All Packages  Class Hierarchy  This Package  Previous  Next  Index