From 0de7064752a876bb045a6c4069a0891601cf275a Mon Sep 17 00:00:00 2001 From: Michael Andreen Date: Fri, 16 May 2003 15:24:53 +0000 Subject: [PATCH] more documentation.. --- MooNote.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/MooNote.java b/MooNote.java index cd71ffb..d49495f 100644 --- a/MooNote.java +++ b/MooNote.java @@ -144,11 +144,19 @@ public class MooNote extends MidiEvent { return noteOffEvent != null; } + /** + * Adds this note (both noteOn and noteOffEvents) to a track. + * @param track the track it'll be added to. + */ public void addTo(Track track){ track.add(this); if (hasNoteOffEvent()) track.add(noteOffEvent); } + /** + * Removes this note (both noteOn and noteOffEvents) from a track. + * @param track the track it'll be removed from. + */ public void removeFrom(Track track){ track.remove(this); if (hasNoteOffEvent()) track.remove(noteOffEvent); -- 2.39.2