I am currently working on a sight-reading app that requires display of musical notation; I am struggling to find a way to efficiently draw this in a JFrame.
I am looking at the JFugue library to help with this, and the description of the class MusicXMLParser_J states the following.
Parses a MusicXML file, and fires events for ParserListener interfaces when tokens are interpreted. The ParserListener does intelligent things with the resulting events, such as create music, draw sheet music, or transform the data. MusicXmlParser.parse can be called with a file name, File, InputStream, or Reader.
However, I am not certain which class that implements ParserListener would allow the drawing of sheet music. Any help is greatly appreciated.