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