]> ruin.nu Git - moosique.git/commitdiff
more documentation..
authorMichael Andreen <harv@ruin.nu>
Fri, 16 May 2003 15:24:53 +0000 (15:24 +0000)
committerMichael Andreen <harv@ruin.nu>
Fri, 16 May 2003 15:24:53 +0000 (15:24 +0000)
MooNote.java

index cd71ffbc1f065e98c89616c849bc4a6610b157ca..d49495fcaafb3693144612b97c9d8e05c5fdb8cb 100644 (file)
@@ -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);