]> ruin.nu Git - moosique.git/blobdiff - MooNoteProp.java
wrong class name.. sorry
[moosique.git] / MooNoteProp.java
diff --git a/MooNoteProp.java b/MooNoteProp.java
new file mode 100644 (file)
index 0000000..bc26486
--- /dev/null
@@ -0,0 +1,26 @@
+import javax.swing.*;
+import java.awt.*;
+import java.awt.event.*;
+
+/*
+ * Graphical representation of a MIDI note.
+ * 
+ * @author  Andersson, Andreen, Lanneskog, Pehrson
+ * @version 1
+ */
+public class MooNoteProp extends JFrame{
+
+       private MooNote note;
+       /* 
+        * Creates a new note preference dialog.
+        * @param mn The note that will be graphically represented
+        */
+       public MooNoteProp (MooNote mn) {
+               note = mn;
+
+               pack();
+       }
+
+                       
+}