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