JPanel probeButtonPane = new JPanel(new FlowLayout(FlowLayout.LEFT));
UserAction[] probeActions = probeMaker.probeActions;
for (int i = 0;i<probeActions.length;i++) {
probeButtonPane.add(newJButton(probeActions[i]));
}
probeModel = new DefaultSequenceTableModel();
probeTable = new ProbeTable(probeModel);
new ProbeMakerProbeTableListener(probeMaker, probeTable, probeModel);
probeScrollPane = new JScrollPane();
probeScrollPane.getViewport().add(probeTable, null);
probePane = new JPanel();