Most visited

Recently visited

Added in API level 1

DataSetObservable

public class DataSetObservable
extends Observable<DataSetObserver>

java.lang.Object
   ↳ android.database.Observable<android.database.DataSetObserver>
     ↳ android.database.DataSetObservable


A specialization of Observable for DataSetObserver that provides methods for sending notifications to a list of DataSetObserver objects.

Summary

Inherited fields

From class android.database.Observable

Public constructors

DataSetObservable()

Public methods

void notifyChanged()

Invokes onChanged() on each observer.

void notifyInvalidated()

Invokes onInvalidated() on each observer.

Inherited methods

From class android.database.Observable
From class java.lang.Object

Public constructors

DataSetObservable

Added in API level 1
DataSetObservable ()

Public methods

notifyChanged

Added in API level 1
void notifyChanged ()

Invokes onChanged() on each observer. Called when the contents of the data set have changed. The recipient will obtain the new contents the next time it queries the data set.

notifyInvalidated

Added in API level 1
void notifyInvalidated ()

Invokes onInvalidated() on each observer. Called when the data set is no longer valid and cannot be queried again, such as when the data set has been closed.

Hooray!