android.database.ContentObservable
A specialization of Observable for ContentObserver that provides methods for
invoking the various callback methods of ContentObserver.
Summary
Public Constructors
Public Methods
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Public Constructors
public
ContentObservable()
Public Methods
public
void
dispatchChange(boolean selfChange)
invokes dispatchUpdate on each observer, unless the observer doesn't want
self-notifications and the update is from a self-notification
public
void
notifyChange(boolean selfChange)
invokes onChange on each observer
public
void
registerObserver(ContentObserver observer)
Adds an observer to the list. The observer cannot be null and it must not already
be registered.
Parameters
observer
| the observer to register |