20212223242526
/** * Creates a BigDecimalSpinnerField with the default cell and appearance. */ public BigDecimalSpinnerField() { super(new BigDecimalPropertyEditor()); }
/** * Creates a BigDecimalField with the default cell and appearance. */ public BigDecimalField() { super(new BigDecimalPropertyEditor()); }
30313233343536
* appearance or otherwise modify how content is rendered or events handled. * * @param cell the cell to use to draw the field */ public BigDecimalField(NumberInputCell<BigDecimal> cell) { super(cell, new BigDecimalPropertyEditor()); }