public ScDoubleField newRatioField(String label) {
   ScDoubleField e;
   e = new ScDoubleField();
   e.setValueAdaptor(getRatioAdaptor());
   e.setLabel(label);
   e.setValidator(AcBillingSubscriberBillingValidator.instance.getRatioValidator());
   return e;
 }