X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooSequence.java;h=b37424e244022317a2e8a16b166f3bce256e3ac1;hb=4e7d6f8b7dd7fbcef2282674b5442d78cf220489;hp=a92ca1039e091e67d0d1808ec460cc7eadb5eeb6;hpb=1e06fcb34d222ef2017d4adf888568184dd63ab9;p=moosique.git diff --git a/MooSequence.java b/MooSequence.java index a92ca10..b37424e 100644 --- a/MooSequence.java +++ b/MooSequence.java @@ -1,8 +1,8 @@ import javax.sound.midi.*; -/** +/* * Functional representation of a MIDI sequence. - * + * * @author Andersson, Andreen, Lanneskog, Pehrson * @version 1 */ @@ -11,14 +11,14 @@ 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 @@ -27,7 +27,7 @@ public class MooSequence { } - /** + /* * Returns the number of tracks in the current sequence. * @return the number of the tracks */ @@ -35,7 +35,7 @@ public class MooSequence { } - /** + /* * Creates a new track after the specified track. * @param track the number of the track (0-31) */ @@ -43,7 +43,7 @@ public class MooSequence { } - /** + /* * Deletes the specified track. * @param track the number of the track (0-31) */ @@ -51,7 +51,7 @@ public class MooSequence { } - /** + /* * Returns the Java Sequence object of the current sequence. * @return a Sequence */ @@ -59,10 +59,10 @@ public class MooSequence { } - /** + /* * Resets the solo and mute settings of all tracks. */ public void activateTracks() { } -} +} \ No newline at end of file