/**
* Tells the gui to show the execution path editor.
*/
public void showPathEditor()
{
this.conditionViewerBtnBar = new TestConditionBtnPanel(controller, this);
this.pathEditor = new TestConditionViewer(controller, this);
this.mainFrame.setEditor(this.pathEditor);
this.mainFrame.setButtonNavBar(this.conditionViewerBtnBar);
}