]> ruin.nu Git - moosique.git/blob - MooNoteProp.java
97711ec5cbe6e9a883656797609237d360520670
[moosique.git] / MooNoteProp.java
1 import javax.swing.*;
2 import java.awt.*;
3 import java.awt.event.*;
4
5 /*
6  * Graphical representation of a MIDI note.
7  * 
8  * @author  Andersson, Andreen, Lanneskog, Pehrson
9  * @version 1
10  */
11  
12 public class MooNoteProp extends JDialog{
13
14         private MooNote note;
15         /* 
16          * Creates a new note preference dialog.
17          * @param mn The note that will be graphically represented
18          */
19         public MooNoteProp (MooNote mn) {
20                 note = mn;
21
22                 pack();
23         }
24
25                         
26 }