ImageIcon technicalDataIcon = ICONS.getIcon("Action.OpenTechnicalData");
technicalDataButton = new JButton(MESSAGES.getString("Action.OpenTechnicalData"), technicalDataIcon);
technicalDataButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
new TechnicalDataFrame(dataRecorderPath);
}
});
toolBar = new JToolBar();
toolBar.setFloatable(false);