abc4j API Specification

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

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


lineProcessed

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

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

fileEnd

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


abc4j API Specification

Submit a bug or feature