Home | History | Annotate | Download | only in providers

Lines Matching refs:Folder

27  * A simple extension of {@link android.database.DataSetObserver} to provide the updated Folder in
28 * {@link #onChanged(Folder)} when the Folder changes. Initializing the object registers with
30 * receive {@link #onChanged(Folder)} till {@link #unregisterAndDestroy()} is called.
32 * To implement an {@link FolderObserver}, you need to implement the {@link #onChanged(Folder)}
52 * {@link #onChanged(Folder)} when the controller changes the Folder.
56 public Folder initialize(FolderController controller) {
74 * Callback invoked when the Folder object is changed. Since {@link Folder} objects are
77 * The updated Folder is passed as the argument.
80 public abstract void onChanged(Folder newFolder);
83 * Return the current folder.
86 public final Folder getFolder() {
94 * Unregisters for Folder changes and makes the object unusable.