Serialized Form

  • Package org.nuiton.jaxx.widgets.number

    • Class org.nuiton.jaxx.widgets.number.NumberCellEditor extends AbstractCellEditor implements Serializable

      serialVersionUID:
      1L
    • Class org.nuiton.jaxx.widgets.number.NumberEditor extends JPanel implements Serializable

      serialVersionUID:
      1L
    • Class org.nuiton.jaxx.widgets.number.NumberEditorConfig extends Object implements Serializable

      serialVersionUID:
      1L
      • Serialized Fields

        • numberType
          Class<?> numberType
          Type of number.
        • property
          String property
          Optional property where to bind the number value in optional bean.
        • selectAllTextOnError
          boolean selectAllTextOnError
          When a error occurs, previous valid value is repush in textField, with this flag setted to true then also reselect this content.
        • useDecimal
          Boolean useDecimal
          Should you allowed decimal number ?
        • useSign
          boolean useSign
          Should you allowed signed number ?
    • Class org.nuiton.jaxx.widgets.number.NumberEditorModel extends org.jdesktop.beans.AbstractSerializableBean implements Serializable

      serialVersionUID:
      1L
      • Serialized Fields

        • bean
          Serializable bean
          Optional bean where to push data.
        • config
          NumberEditorConfig config
        • numberPattern
          String numberPattern
          Optional pattern to validate input text.
        • numberValue
          Number numberValue
          Current number value of the editor.
        • numberValueIsAdjusting
          boolean numberValueIsAdjusting
          To avoid reentrant code while adjusting number value.
        • textValue
          String textValue
          Current text representation of the number (this value is always displayed in editor). Meanwhile the value can be different than the string represention of the numberValue, for example we can have as textValue 0. which represents the number 0.
        • textValueIsAdjusting
          boolean textValueIsAdjusting
          To avoid reentrant code while adjusting text value.