Back to project page favouritetv.
The source code is released under:
Copyright (c) 2011 Andr? Prata<andreprata@ua.pt> Eriksson Monteiro<eriksson.monteiro@ua.pt> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associat...
If you think the Android project favouritetv listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * /*from w w w. j av a 2 s .co m*/ */ package pt.ua.code.favouritetv.content; import android.net.Uri; import android.provider.BaseColumns; /** * @author Andr Prata * */ public abstract class Channels implements BaseColumns { public static final String NAME = "channels"; public static final Uri CONTENT_URI = Uri.parse("content://" + FavouriteTvProvider.AUTHORITY + "/" + NAME); public static final String CHANNEL_ID = "_id"; public static final String CHANNEL_NAME = "name"; public static final String CHANNEL_SIGLA = "sigla"; public static final String CHANNEL_FAVOURITE = "favourite"; public static final String CONTENT_TYPE = "vnd.android.cursor.dir/vnd.favouritetv." + NAME; public static final String NAME_SINGLE = NAME + "/#"; public static final String CONTENT_TYPE_SINGLE = "vnd.android.cursor.item/vnd.favouritetv." + NAME; }