Observable

blockudoku.Observable
trait Observable

Needs to be implemented by classes that want to notify observers about changes.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Concrete methods

def addObserver(observer: Observer): Unit

Adds an observer to the list of observers.

Adds an observer to the list of observers.

Value parameters

observer

The observer to add.

Attributes

def notifyObservers(): Unit

Invokes the update method of all observers.

Invokes the update method of all observers.

Attributes