X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooSequence.java;h=b37424e244022317a2e8a16b166f3bce256e3ac1;hb=4e7d6f8b7dd7fbcef2282674b5442d78cf220489;hp=8b4c4e797a0cbb42c41dcf520f9d1b685048aee1;hpb=49e1a560ad5e44c0588598e0d6468d690ac40d15;p=moosique.git diff --git a/MooSequence.java b/MooSequence.java index 8b4c4e7..b37424e 100644 --- a/MooSequence.java +++ b/MooSequence.java @@ -1,23 +1,24 @@ import javax.sound.midi.*; -/** +/* * Functional representation of a MIDI sequence. + * * @author Andersson, Andreen, Lanneskog, Pehrson - * @version 1.1 + * @version 1 */ public class MooSequence { private Collection tracks; - /** + /* * Creates a MooSequence with three tracks. */ public MooSequence () { } - /** + /* * Returns a pointer to the specified track. * @param track the number of the track (0-31) * @return the specified track @@ -26,7 +27,7 @@ public class MooSequence { } - /** + /* * Returns the number of tracks in the current sequence. * @return the number of the tracks */ @@ -34,7 +35,7 @@ public class MooSequence { } - /** + /* * Creates a new track after the specified track. * @param track the number of the track (0-31) */ @@ -42,7 +43,7 @@ public class MooSequence { } - /** + /* * Deletes the specified track. * @param track the number of the track (0-31) */ @@ -50,7 +51,7 @@ public class MooSequence { } - /** + /* * Returns the Java Sequence object of the current sequence. * @return a Sequence */ @@ -58,10 +59,10 @@ public class MooSequence { } - /** + /* * Resets the solo and mute settings of all tracks. */ public void activateTracks() { } -} +} \ No newline at end of file