Class SpinnerComponent

All Implemented Interfaces:
IComponent<IValue<Integer>>, IEventChannel
Direct Known Subclasses:
JettyPortNumberComponent

Component that manages the integer model as the one value of the allowed value set. The value set is represented by integer values from the set up minimum and maximum value.
  • Constructor Details

    • SpinnerComponent

      public SpinnerComponent(ISpinnerParameterization<Integer> parameterization)
      Creates a new SpinnerComponent instance with the given parameterization.
      Parameters:
      parameterization - the parameterization.
    • SpinnerComponent

      public SpinnerComponent(int min, int max)
      Creates a new SpinnerComponent instance with the given min and max values.
      Parameters:
      min - the minimum allowed threshold
      max - the maximum allowed threshold
    • SpinnerComponent

      public SpinnerComponent(int min, int max, ValueChangeApply applyValueChange)
      Creates a new SpinnerComponent instance with the given min and max values.
      Parameters:
      min - the minimum allowed threshold
      max - the maximum allowed threshold
      applyValueChange - the apply value change to set, cannot be null
  • Method Details