Back to project page Android-ORM.
The source code is released under:
Apache License
If you think the Android project Android-ORM listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2006 The Android Open Source Project */* www.j a v a2 s .c o m*/ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.content; import android.database.ContentObserver; import android.net.Uri; /** * This class provides applications access to the content model. * * <div class="special reference"> <h3>Developer Guides</h3> * <p> * For more information about using a ContentResolver with content providers, * read the <a href="{@docRoot} * guide/topics/providers/content-providers.html">Content Providers</a> * developer guide. * </p> */ public abstract class ContentResolver { /** * Register an observer class that gets callbacks when data identified by a * given content URI changes. * * @param uri * The URI to watch for changes. This can be a specific row URI, * or a base URI for a whole class of content. * @param notifyForDescendents * If <code>true</code> changes to URIs beginning with * <code>uri</code> will also cause notifications to be sent. If * <code>false</code> only changes to the exact URI specified by * <em>uri</em> will cause notifications to be sent. If true, * than any URI values at or below the specified URI will also * trigger a match. * @param observer * The object that receives callbacks when changes occur. * @see #unregisterContentObserver */ public final void registerContentObserver(Uri uri, boolean notifyForDescendents, ContentObserver observer) { } /** * Unregisters a change observer. * * @param observer * The previously registered observer that is no longer needed. * @see #registerContentObserver */ public final void unregisterContentObserver(ContentObserver observer) { } }