X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooGUI.java;h=0095f42fc6906e60be3d06332bef79695718e833;hb=dc7477835f6d61c4235b7fbe36f97fec553e2f81;hp=dcb52da9469934f4a310840128f5a99f25fa0361;hpb=6fd29f9b7ee2db0c6467f26425906a84c4cc7957;p=moosique.git diff --git a/MooGUI.java b/MooGUI.java index dcb52da..0095f42 100644 --- a/MooGUI.java +++ b/MooGUI.java @@ -1,3 +1,4 @@ +import javax.sound.midi.*; import javax.swing.*; /* @@ -9,17 +10,20 @@ import javax.swing.*; public class MooGUI { + Sequence seq; + /* * Creates the GUI. */ public MooGUI () { } - + /* - * + * Changes the sequence of the GUI. + * @param sequence the MIDI sequence to visualize */ - public void () { - + public void setSequence(Sequence sequence) { + seq = sequence; } }