/******************************************************************************
Examine the working of the bubble sort by itself.

----------------------------------------------------
Copyright (c) Gunnar Gotshalks. All Rights Reserved.

Permission to use, copy, modify, and distribute this software
and its documentation for NON-COMMERCIAL purposes and
without fee is hereby granted. 
*******************************************************************************/

package FlexOr.searchAndSort;

import java.awt.*;

@SuppressWarnings("serial")
public class BubbleTest extends SortComparison {

  public BubbleTest() {
    bubbleObserver.change(40, 32, 30, 10, 400);
    centerPanel = new Panel(new GridLayout(0,1));
    centerPanel.add(bubbleObserver);
    add("Center", centerPanel);
    sizeChoice.removeAll();
    sizeChoice.addItem("5");
    sizeChoice.addItem("7");
    sizeChoice.addItem("10");
    sizeChoice.select(2);
  }
  
}
