abc.parser
Interface AbcFileParserListenerInterface

All Superinterfaces:
java.util.EventListener, TuneParserListenerInterface
All Known Implementing Classes:
AbcFileParserAdapter

public interface AbcFileParserListenerInterface
extends TuneParserListenerInterface

The interface to be implemented when parsing abc files.


Method Summary
 void fileBegin()
          Invoked when the parsing of the file begins.
 void fileEnd()
          Invoked when the parsing of the file end.
 void lineProcessed(java.lang.String line)
          Invoked when a line has been processed.
 
Methods inherited from interface abc.parser.TuneParserListenerInterface
invalidCharacter, invalidToken, tuneBegin, tuneEnd, validToken
 

Method Detail

fileBegin

public void fileBegin()
Invoked when the parsing of the file begins.


lineProcessed

public void lineProcessed(java.lang.String line)
Invoked when a line has been processed.

Parameters:
line - The line that has just been processed.

fileEnd

public void fileEnd()
Invoked when the parsing of the file end.