AndroidSequencepublic class AndroidSequence extends Sequence Implements a MIDI Sequence for Android. Its set of tracks etc. will always
be empty (at least we don't care about the contents). Instead, we store the
URL to the original MIDI data in it, so we can feed it into the Android
MediaPlayer. |
Fields Summary |
---|
private URL | urlHolds the URL to the MIDI data. |
Constructors Summary |
---|
public AndroidSequence(URL url)Creates a new AndroidSequence.
super(0.0f, 1);
this.url = url;
|
Methods Summary |
---|
java.net.URL | getURL()Returns the URL pointing to the MIDI data.
return url;
|
|