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).


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