Class Keller

java.lang.Object
  |
  +--Keller
Direct Known Subclasses:
CharKeller

public class Keller
extends java.lang.Object

Abstrakter Datentyp Keller mit den Methoden push, pop, top, empty


Inner Class Summary
private static class Keller.KellerEintrag
           
 
Field Summary
private  Keller.KellerEintrag top
           
 
Constructor Summary
Keller()
           
 
Method Summary
 boolean empty()
           
 void pop()
           
 void push(java.lang.Object x)
           
 java.lang.Object top()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

top

private Keller.KellerEintrag top
Constructor Detail

Keller

public Keller()
Method Detail

empty

public boolean empty()

push

public void push(java.lang.Object x)

top

public java.lang.Object top()

pop

public void pop()