editorOuterbox.add(editorBox);
//editorOuterbox.add(Box.createHorizontalGlue());
editorOuterbox.setBorder(border);
this.parameterEditor = new DblParamSetFrame("View initial guesses");
this.parameterEditor.setAlphaSorted(true);
this.parameterEditor.setEnabled(false);//Disallow editing of fields...
this.parameterEditor.addCancelListener(new ActionListener()
{
public void actionPerformed(ActionEvent ev)
{
parameterEditor.setVisible(false);
}
});
this.parameterEditor.addOkListener(new ActionListener()
{
public void actionPerformed(ActionEvent ev)
{
parameterEditor.setVisible(false);
}
});
this.currentEditor = new DblParamSetFrame("Current estimates");
this.currentEditor.setAlphaSorted(true);
this.currentEditor.addCancelListener(new ActionListener()
{
public void actionPerformed(ActionEvent ev)
{
currentEditor.setVisible(false);
}
});
this.currentEditor.addOkListener(new ActionListener()
{
public void actionPerformed(ActionEvent ev)
{
currentEditor.setVisible(false);
}
});
this.priorEditor = new DblParamSetFrame("Edit prior parameters");
this.priorEditor.setAlphaSorted(true);
this.priorEditor.addCancelListener(new ActionListener()
{
public void actionPerformed(ActionEvent ev)
{
priorEditor.setVisible(false);
}
});
this.priorEditor.addOkListener(new ActionListener()
{
public void actionPerformed(ActionEvent ev)
{
priorEditor.setVisible(false);
}
});
this.proposalEditor = new DblParamSetFrame("Edit proposal mixing parameters");
this.proposalEditor.setAlphaSorted(true);
this.proposalEditor.addCancelListener(new ActionListener()
{
public void actionPerformed(ActionEvent ev)