Class SpinnerFactory


public final class SpinnerFactory extends AbstractControlFactory<SpinnerFactory,Spinner>
This class provides a convenient shorthand for creating and initializing Spinner. This offers several benefits over creating Spinner normal way:
  • The same factory can be used many times to create several Spinner instances
  • The setters on SpinnerFactory all return "this", allowing them to be chained

Note that this class does not extend AbstractCompositeFactory even though Spinner extends Composite. This is because Spinner is not supposed to be used like a Composite.

Since:
3.18