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 invoking the various callback methods of DataSetObserver.

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 ()

Public Methods

public void notifyChanged ()

Invokes onChanged on each observer. Called when the data set being observed has changed, and which when read contains the new state of the data.

public void notifyInvalidated ()

Invokes onInvalidated on each observer. Called when the data set being monitored has changed such that it is no longer valid.