Exemplo n.º 1
0
 private void initTextField() {
   value = new NumberText(this, SWT.NONE);
   GridData data = new GridData();
   data.horizontalAlignment = GridData.FILL;
   data.grabExcessVerticalSpace = true;
   value.setLayoutData(data);
 }
Exemplo n.º 2
0
 public double getValue() {
   return value.getDouble();
 }