]> ruin.nu Git - moosique.git/blobdiff - MooSequence.java
Started on Moosique and MooNote. Changed comment in the others.
[moosique.git] / MooSequence.java
index 8b4c4e797a0cbb42c41dcf520f9d1b685048aee1..b37424e244022317a2e8a16b166f3bce256e3ac1 100644 (file)
@@ -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