Int.G.Pro.Observable.X.Abstract

abstract class Abstract[A <: Any.Int] extends Pro.O.X.Abstract[A] with Int.G.Pro.O[A]
Source
Pro.scala
trait Int.G.Pro.Observable[Int.G.Pro.Observable.X.Abstract.A]
trait Int.G.Pro[Int.G.Pro.Observable.X.Abstract.A]
trait Any.Z.PrimitiveTag.Int
trait Any.Z.PrimitiveTag
class Pro.Observable.X.Abstract[Int.G.Pro.Observable.X.Abstract.A]
trait Pro.Observable.X.Base[Int.G.Pro.Observable.X.Abstract.A]
trait Pro.Observable[Int.G.Pro.Observable.X.Abstract.A]
class Pro.X.Abstract[Int.G.Pro.Observable.X.Abstract.A]
trait Pro.X.Base[Int.G.Pro.Observable.X.Abstract.A]
trait Able.Doc
trait Able.Tag
trait Pro[Int.G.Pro.Observable.X.Abstract.A]
class java.lang.Object
trait scala.Matchable
class Any
class Int.G.Pro.ObservableMutable.X.Abstract[Int.G.Pro.ObservableMutable.X.Abstract.A]

Def

def apply(): A
Inherited from
Pro
Source
Pro.scala
def doc: Doc
Inherited from
Base
Source
X.scala
lazy protected val eventStore: Event.Store
Inherited from
Provider
Source
Provider.scala
protected def fireChange: Int
Inherited from
Base
Source
X.scala
override def onChange[U](f: () => U): Event.Control

On change subscription

On change subscription

Adds given function as listener to property change events

   val pro = String.Pro.OM("foo")

   // event subscription
   pro.onChange(() => "Change Detected".tp)

   // library based event subscription
   pro.onValueChangeWithOld((v, old) => "Value changed from " + old + " to " + v tp()))

   pro() = "bar"

   // Output
   Value changed from foo to bar
   Change Detected
Definition Classes
Inherited from
Base
Source
X.scala
def onObservableChange[U](l: () => U): Event.Control
Inherited from
Observable
Source
__.scala
def tag: String

Make String

Make String

tag returns this instance String representation, which should be used insted of toString

Inherited from
Doc
Source
Doc.scala