UI.Run
Interface GEVAStreamParser.Listener<E>

All Known Implementing Classes:
GEVAGraphPane.ConfigListener, GEVAGraphPane.DataListener, GEVAGraphPane.LabelListener, GEVALSystemPane, GEVARun
Enclosing class:
GEVAStreamParser<E extends GEVAStreamParser.Event>

protected static interface GEVAStreamParser.Listener<E>

Listener interface which inheriting classes must extend, even if just to an empty type, so that listeners can listen on the specific listener for a given class


Method Summary
 void lineParsed(E event)
          Called when a single line has been acceptedly parsed
 void streamParsed()
          Called when the stream has finished parsing.
 

Method Detail

lineParsed

void lineParsed(E event)
Called when a single line has been acceptedly parsed


streamParsed

void streamParsed()
Called when the stream has finished parsing. This is always called, regardless of whether there were any lines parsed (lineParsed) and once it is called, it and lineParsed will not be be called again (for this run)