From 6e3b48dc131ea8abaa475da14ff58b1c637ae1e5 Mon Sep 17 00:00:00 2001 From: Michael Andreen Date: Fri, 16 May 2003 14:58:28 +0000 Subject: [PATCH] added comments --- MooGUI.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/MooGUI.java b/MooGUI.java index 71b1493..8596818 100644 --- a/MooGUI.java +++ b/MooGUI.java @@ -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(" "); -- 2.39.2