edu.stanford.nlp.util
Interface Agenda

All Known Implementing Classes:
ScoredPriorityAgenda, StackAgenda

public interface Agenda

Agenda: an interface for representing an Agenda (a list of things to be done).

Author:
Dan Klein

Method Summary
 void add(Object o)
           
 boolean hasNext()
           
 Object next()
           
 

Method Detail

add

public void add(Object o)

next

public Object next()

hasNext

public boolean hasNext()


Stanford NLP Group