com.softsynth.jmsl.score.util
Interface RawJScoreFileListener

All Known Implementing Classes:
RawJScoreFileImporter, RawJScoreFilePrinter, RawJScoreFilePrintingListener

public interface RawJScoreFileListener


Method Summary
 void handleClef(int measureNumber, int staffNumber, java.lang.String clef)
           
 void handleInterval(int measure, int track, double dur, int pitch, double vel, boolean tiedOut, boolean beamedOut, int noteStyle)
           
 void handleMaxVel(double maxVel)
           
 void handleMeasure(int measureNumber, int numerator, int denominator)
           
 void handleNote(int measure, int track, double dur, int pitch, double vel, boolean tiedOut, boolean beamedOut, int noteStyle)
           
 void handleNumStaffs(int numStaffs)
           
 void handleTempo(int measure, int bpm)
           
 void handleTicksPerQuarter(double ticksPerQtr)
           
 

Method Detail

handleMeasure

void handleMeasure(int measureNumber,
                   int numerator,
                   int denominator)

handleNote

void handleNote(int measure,
                int track,
                double dur,
                int pitch,
                double vel,
                boolean tiedOut,
                boolean beamedOut,
                int noteStyle)

handleInterval

void handleInterval(int measure,
                    int track,
                    double dur,
                    int pitch,
                    double vel,
                    boolean tiedOut,
                    boolean beamedOut,
                    int noteStyle)

handleTempo

void handleTempo(int measure,
                 int bpm)

handleTicksPerQuarter

void handleTicksPerQuarter(double ticksPerQtr)

handleMaxVel

void handleMaxVel(double maxVel)

handleClef

void handleClef(int measureNumber,
                int staffNumber,
                java.lang.String clef)

handleNumStaffs

void handleNumStaffs(int numStaffs)