import java.awt.*; import java.awt.event.*; public class BubbleFrame extends Frame implements ActionListener{ String[] comments; int x; Button dismiss; TextArea textarea = new TextArea(15,40); SortClass sorter; public BubbleFrame(SortClass tempsort) { super("Bubble Sort Explanation"); sorter = tempsort; setLayout(new BorderLayout()); setBackground(Color.lightGray); comments = new String[2]; comments[0] = new String("this is the bubble sort"); comments[1] = new String("isn't it slow?"); textarea.setEditable(false); for(x=0;x