1
0
Fork 0
beispiele_pr2/src/main/java/pr2/ads/adt/Queue.java

9 lines
242 B
Java

package pr2.algorithmen.adt;
public interface Queue {
public void enter(Object obj) throws QueueException;
public Object leave() throws QueueException;
public Object front() throws QueueException;
public boolean isEmpty();
}