// right place
mspe.postModify(pos, atEnd);
}
void addButton(LogViewerButton button) {
final LogViewerButton fb = button;
JButton b = new JButton(button.getButtonText());
b.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
fb.activate(LogViewer.INSTANCE.getEntries(), ae);
}
});
buttonPanel.add(b, 0);
buttonMap.put(button, b);