*/
public ZoomBox() {
// init mutex
this.theMutexObject = new Object();
// init components
this.element = new ZoomComboBox();
this.element.setToolTipText("Scaling of graph's view");
this.view = null;
this.element.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
synchronized (ZoomBox.this.theMutexObject) {