this.mazeView = mazeView;
super.setBorder(BorderFactory.createTitledBorder("Available Mazes"));
super.setViewportView(this.myList);
final DefaultComboBoxModel model = Main.getPrimaryFrameInstance().getMazeInfoModel().getMazeInfoComboBoxModel();
model.removeListDataListener(this);
model.addListDataListener(this);
this.myList.setModel(model);
this.myList.setSelectionModel(getListSelectionModel());
this.myList.getSelectionModel().addListSelectionListener(this);
/**