c

de.sciss.lucre.swing.impl

NumericOptionSpinnerModel

class NumericOptionSpinnerModel[A] extends AbstractSpinnerModel with Serializable

Linear Supertypes
AbstractSpinnerModel, Serializable, SpinnerModel, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NumericOptionSpinnerModel
  2. AbstractSpinnerModel
  3. Serializable
  4. SpinnerModel
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NumericOptionSpinnerModel(value0: Option[A], minimum0: Option[A], maximum0: Option[A], stepSize0: A)(implicit num: Numeric[A])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addChangeListener(arg0: ChangeListener): Unit
    Definition Classes
    AbstractSpinnerModel → SpinnerModel
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def fireStateChanged(): Unit
    Attributes
    protected[javax.swing]
    Definition Classes
    AbstractSpinnerModel
  11. def getChangeListeners(): Array[ChangeListener]
    Definition Classes
    AbstractSpinnerModel
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def getListeners[T <: EventListener](arg0: Class[T]): Array[T]
    Definition Classes
    AbstractSpinnerModel
  14. def getNextValue(): AnyRef

    Returns the next number in the sequence.

    Returns the next number in the sequence.

    returns

    value + stepSize or null if the sum exceeds maximum.

    Definition Classes
    NumericOptionSpinnerModel → SpinnerModel
  15. def getPreviousValue(): AnyRef

    Returns the previous number in the sequence.

    Returns the previous number in the sequence.

    returns

    value - stepSize, or null if the sum is less than minimum.

    Definition Classes
    NumericOptionSpinnerModel → SpinnerModel
  16. def getValue(): AnyRef
    Definition Classes
    NumericOptionSpinnerModel → SpinnerModel
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def maximum: Option[A]
  20. def maximum_=(value: Option[A]): Unit
  21. def minimum: Option[A]
  22. def minimum_=(value: Option[A]): Unit
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def removeChangeListener(arg0: ChangeListener): Unit
    Definition Classes
    AbstractSpinnerModel → SpinnerModel
  27. def setValue(v: AnyRef): Unit

    Sets the current value for this sequence.

    Sets the current value for this sequence. If value is null, or not an Option, an IllegalArgumentException is thrown. No bounds checking is done here.

    This method fires a ChangeEvent if the value has changed.

    v

    the current (non null) Option for this sequence

    Definition Classes
    NumericOptionSpinnerModel → SpinnerModel
    Exceptions thrown

    IllegalArgumentException if value is null or not a Option

  28. def stepSize: A
  29. def stepSize_=(value: A): Unit
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. def value: Option[A]
  33. def value_=(v: Option[A]): Unit
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AbstractSpinnerModel

Inherited from Serializable

Inherited from SpinnerModel

Inherited from AnyRef

Inherited from Any

Ungrouped