this.goButton = new JButton();
this.goButton.setText("GO");
this.goButton.setToolTipText("Increment the axisCurrentPosition with the step value");
this.goButton.setFont(new java.awt.Font("Dialog", 1, 12));
this.goButton.setBorder(new BevelBorder(BevelBorder.RAISED, null, null, null, null));
this.goButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent evt) {
jButtonIncActionPerformed(evt);
}