]> ruin.nu Git - moosique.git/commitdiff
added comments
authorMichael Andreen <harv@ruin.nu>
Fri, 16 May 2003 14:58:28 +0000 (14:58 +0000)
committerMichael Andreen <harv@ruin.nu>
Fri, 16 May 2003 14:58:28 +0000 (14:58 +0000)
MooGUI.java

index 71b14937a1f8f1a0e610a08b085a43727df50ff5..85968182d7ce3a48e3855b655838ff926fb576d6 100644 (file)
@@ -24,6 +24,7 @@ public class MooGUI extends JFrame {
        
        /** 
         * Creates the GUI.
+        * @param seq The sequence that the program is operating on.
         */
        public MooGUI(Sequence seq) {
                super("Moosique");
@@ -103,6 +104,10 @@ public class MooGUI extends JFrame {
                show();
        }
 
+       /**
+        * Sets the background on Containers
+        * @param c the Container that will have it's background change
+        */
        private void setBackground(Container c) {
                c.setBackground(bgColor);
                Component[] comps = c.getComponents();
@@ -139,6 +144,10 @@ public class MooGUI extends JFrame {
                toolbar.updateProgInd(tickPosition);
        }
 
+       /**
+        * Creates an action for a specific octave.
+        * @param octave The octave we want an action for.
+        */
        private Action createOctaveAction(final int octave) {
                Action octaveAction = new AbstractAction() {
                        public void actionPerformed(ActionEvent ae) {
@@ -147,12 +156,18 @@ public class MooGUI extends JFrame {
                return octaveAction;
        }
 
+       /**
+        * Listener for closing the program
+        */
        class MooGUICloser extends WindowAdapter {
                public void windowClosing(WindowEvent e) {
                        Moosique.quit();
                }
        }
        
+       /**
+        * TimerTask that resets the statusbar
+        */
        class StatusResetTask extends TimerTask {
                public void run() {
                        setStatus(" ");