Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public class

DataSetObservable

extends Observable <T>
java.lang.Object
   ↳ android.database.Observable <T>
     ↳ android.database.DataSetObservable

Class Overview

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

Summary

[Expand]
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.
[Expand]
Inherited Methods
From class android.database.Observable
From class java.lang.Object

Public Constructors

public DataSetObservable ()

Added in API level 1

Public Methods

public void notifyChanged ()

Added in API level 1

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.

public void notifyInvalidated ()

Added in API level 1

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.