Back to project page K6nele.
The source code is released under:
Apache License
If you think the Android project K6nele listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ee.ioc.phon.android.speak.provider; /* ww w . j a va 2 s . c om*/ import android.net.Uri; import android.provider.BaseColumns; public class BaseColumnsImpl implements BaseColumns { public static final String CONTENT_TYPE = "vnd.android.cursor.dir/vnd.ee.ioc.phon.android.speak"; public static Uri makeContentUri(String name) { return Uri.parse("content://" + AppsContentProvider.AUTHORITY + "/" + name); } }