Skip to content

Instantly share code, notes, and snippets.

@markojerkic
Created April 22, 2017 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markojerkic/8fbb4685f2c29c3f357709dc28bf0af1 to your computer and use it in GitHub Desktop.
Save markojerkic/8fbb4685f2c29c3f357709dc28bf0af1 to your computer and use it in GitHub Desktop.
An example of a FeedReaderConctract
public final class FeedReaderContract {
//Inner class that defines the table contents
public static class FeedEntry implements BaseColumns {
public static final String TABLE_NAME = "table";
public static final String COLUMN_NAME_1 = "colums1";
public static final String COLUMN_NAME_2 = "column2";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment