Home | History | Annotate | Download | only in database

Lines Matching refs:onChange

36      * @param handler The handler to run {@link #onChange} on, or null if none.
94 public void onChange(boolean selfChange) {
105 * the {@link #onChange(boolean)} overload of this method whenever they
106 * implement the {@link #onChange(boolean, Uri)} overload.
110 * // Implement the onChange(boolean) method to delegate the change notification to
111 * // the onChange(boolean, Uri) method to ensure correct operation on older versions
112 * // of the framework that did not have the onChange(boolean, Uri) method.
114 * public void onChange(boolean selfChange) {
115 * onChange(selfChange, null);
118 * // Implement the onChange(boolean, Uri) method to take advantage of the new Uri argument.
120 * public void onChange(boolean selfChange, Uri uri) {
129 public void onChange(boolean selfChange, Uri uri) {
130 onChange(selfChange);
144 public void onChange(boolean selfChange, Uri uri, int userId) {
145 onChange(selfChange, uri);
152 * then a call to the {@link #onChange} method is posted to the handler's message queue.
153 * Otherwise, the {@link #onChange} method is invoked immediately on this thread.
170 * then a call to the {@link #onChange} method is posted to the handler's message queue.
171 * Otherwise, the {@link #onChange} method is invoked immediately on this thread.
186 * then a call to the {@link #onChange} method is posted to the handler's message queue.
187 * Otherwise, the {@link #onChange} method is invoked immediately on this thread.
196 onChange(selfChange, uri, userId);
216 ContentObserver.this.onChange(mSelfChange, mUri, mUserId);
228 public void onChange(boolean selfChange, Uri uri, int userId) {