Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb956877 authored by Hemal Patel's avatar Hemal Patel
Browse files

Docs: Fixed an invalid initialization of ExampleProvider member in Content URI

patterns docs sample

Bug: 28679030
Change-Id: Ia8f30fa82dbbced9c177e39a61834f25d5b331b2
parent cb3ae33c
Loading
Loading
Loading
Loading
+20 −18
Original line number Diff line number Diff line
@@ -409,13 +409,14 @@ page.title=Creating a Content Provider
public class ExampleProvider extends ContentProvider {
...
    // Creates a UriMatcher object.
    private static final UriMatcher sUriMatcher;
...
    private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);

    static {
        /*
         * The calls to addURI() go here, for all of the content URI patterns that the provider
         * should recognize. For this snippet, only the calls for table 3 are shown.
         */
...

        /*
         * Sets the integer value for multiple rows in table 3 to 1. Notice that no wildcard is used
         * in the path
@@ -428,6 +429,7 @@ public class ExampleProvider extends ContentProvider {
         * "content://com.example.app.provider/table3 doesn't.
         */
        sUriMatcher.addURI("com.example.app.provider", "table3/#", 2);
    }
...
    // Implements ContentProvider.query()
    public Cursor query(