18192021222324
/** * Creates a LongSpinnerField with the default cell and appearance. */ public LongSpinnerField() { super(new LongPropertyEditor()); }
/** * Creates an LongField with the default cell and appearance. */ public LongField() { super(new LongPropertyEditor()); }
28293031323334
* appearance or otherwise modify how content is rendered or events handled. * * @param cell the cell to use to draw the field */ public LongField(NumberInputCell<Long> cell) { super(cell, new LongPropertyEditor()); }