/**
* Initialization of a range view.
*/
public void initialize() {
this.rangeNameLabel = new Label();
this.rangeNameLabel.setText("Range");
this.rangeNameLabel.setBackground(new Color(204, 255, 204));
this.rangeNameLabel.setOpaque(true);
this.rangeNameLabel.setHorizontalAlignment(JLabel.CENTER);
this.rangeNameLabel.setVerticalAlignment(JLabel.CENTER);
this.rangeNameLabel.setPreferredSize(new Dimension(200, 30));
this.rangeNameLabel.setBorder(BorderFactory.createEtchedBorder());
this.integrationTimeLabel = new Label();
this.integrationTimeLabel.setText("Integration Time ");
this.integrationTimeLabel.setFont(new Font(null, 0, 11));
this.integrationTimeLabel.setPreferredSize(new Dimension(100, 20));
this.numberOfStepsLabel = new Label();
this.numberOfStepsLabel.setText("Number of Steps ");
this.numberOfStepsLabel.setFont(new Font(null, 0, 11));
this.numberOfStepsLabel.setPreferredSize(new Dimension(100, 20));
this.setLayout(new GridBagLayout());