org.powerscala.bind

Bindable

trait Bindable[T] extends (T) ⇒ Unit with Listenable

Bindable is an inheritable trait on mutable objects that allows binding to Listenable objects to reflect the changes back to the Bindable.

Linear Supertypes
Listenable, (T) ⇒ Unit, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Bindable
  2. Listenable
  3. Function1
  4. AnyRef
  5. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(v1: T): Unit

    Definition Classes
    Function1

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addListener(listener: Listener, referenceType: ReferenceType = ReferenceType.Hard): Listener

    Attributes
    protected[event]
    Definition Classes
    Listenable
  7. def andThen[A](g: (Unit) ⇒ A): (T) ⇒ A

    Definition Classes
    Function1
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. val asynchronousActor: Actor

    Attributes
    protected[event]
    Definition Classes
    Listenable
  10. def bind(listenable: Listenable): Binding[T]

    Binds this instance to get changes to listenable when they occur.

    Binds this instance to get changes to listenable when they occur.

    listenable

    what to bind to

  11. def bindTo[S](listenable: Listenable)(implicit conversion: (S) ⇒ T): Binding[S]

    Binds this instance to get changes to listenable when they occur and are converted through the conversion implicit function to represent the correct value.

    Binds this instance to get changes to listenable when they occur and are converted through the conversion implicit function to represent the correct value.

    listenable

    what to bind to

  12. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def compose[A](g: (A) ⇒ T): (A) ⇒ Unit

    Definition Classes
    Function1
  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  16. object filters extends AnyRef

  17. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  18. def fire(event: Event): Routing

    Definition Classes
    Listenable
  19. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. def listenTo(listenables: Listenable*): EventListenerBuilder

    Allows single instantiation of a listener listening to multiple Listenables simultaneously.

    Allows single instantiation of a listener listening to multiple Listenables simultaneously.

    Convenience method for Listenable.multiple.

    Definition Classes
    Listenable
  23. lazy val listeners: EventListenerBuilder

    Definition Classes
    Listenable
  24. var listenersList: List[Listener]

    Attributes
    protected[event]
    Definition Classes
    Listenable
  25. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  28. def onChange(listenables: Listenable*)(f: ⇒ Unit): Unit

    Adds change listeners to the Listenables to invoke the supplied function immediately when a change occurs.

    Adds change listeners to the Listenables to invoke the supplied function immediately when a change occurs.

    Convenience method for Listenable.onChange.

    Definition Classes
    Listenable
  29. def removeListener(listener: Listener): Listener

    Attributes
    protected[event]
    Definition Classes
    Listenable
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

    Definition Classes
    Function1 → AnyRef → Any
  32. def unbind(listenable: Listenable): Any

    Unbinds this instance from changes occurring on listenable when they occur.

    Unbinds this instance from changes occurring on listenable when they occur.

    listenable

    to unbind from

  33. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  34. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  35. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Listenable

Inherited from (T) ⇒ Unit

Inherited from AnyRef

Inherited from Any