/**
* @return the toolbar for the exact wizard. Shamelessly uses icon from the main jmt frame
*/
protected JMTToolBar makeToolbar() {
JMTToolBar tb = new JMTToolBar(JMTImageLoader.getImageLoader());
tb.setFloatable(false);
//null values add a gap between toolbar icons
AbstractJMTAction[] actions = { FILE_NEW, FILE_OPEN, FILE_SAVE, null, ACTION_SOLVE, SWITCH_TO_SIMULATOR, ACTION_RANDOMIZE_MODEL, null, HELP,null };
String[] htext = { "Creates a new model", "Opens a saved model", "Saves the current model", "Solves the current model",
"Import current model to JSIMwiz to solve it with the simulator", "Randomize model data", "Show help"};
ArrayList<AbstractButton> buttons = new ArrayList<AbstractButton>();
buttons.addAll(tb.populateToolbar(actions));
//adds the algorithm selection box
amvaPanel = new AMVAPanel(this);
tb.add(amvaPanel);
// Adds help
for (int i = 0; i < buttons.size(); i++) {
AbstractButton button = buttons.get(i);
help.addHelp(button, htext[i]);