PageRenderTime 27ms CodeModel.GetById 0ms RepoModel.GetById 1ms app.codeStats 0ms

/android/generated/android/content/ContentProvider.cs

https://bitbucket.org/festevezga/xobotos
C# | 363 lines | 303 code | 60 blank | 0 comment | 0 complexity | 3b3ccbd5d9299a43231a8348ffa90b79 MD5 | raw file
  1. using Sharpen;
  2. namespace android.content
  3. {
  4. [Sharpen.Stub]
  5. public abstract class ContentProvider : android.content.ComponentCallbacks2
  6. {
  7. internal const string TAG = "ContentProvider";
  8. private android.content.Context mContext = null;
  9. private int mMyUid;
  10. private string mReadPermission;
  11. private string mWritePermission;
  12. private android.content.pm.PathPermission[] mPathPermissions;
  13. private bool mExported;
  14. private android.content.ContentProvider.Transport mTransport;
  15. [Sharpen.Stub]
  16. public ContentProvider()
  17. {
  18. throw new System.NotImplementedException();
  19. }
  20. [Sharpen.Stub]
  21. public ContentProvider(android.content.Context context, string readPermission, string
  22. writePermission, android.content.pm.PathPermission[] pathPermissions)
  23. {
  24. throw new System.NotImplementedException();
  25. }
  26. [Sharpen.Stub]
  27. public static android.content.ContentProvider coerceToLocalContentProvider(android.content.IContentProvider
  28. abstractInterface)
  29. {
  30. throw new System.NotImplementedException();
  31. }
  32. [Sharpen.Stub]
  33. internal class Transport : android.content.ContentProviderNative
  34. {
  35. [Sharpen.Stub]
  36. internal virtual android.content.ContentProvider getContentProvider()
  37. {
  38. throw new System.NotImplementedException();
  39. }
  40. [Sharpen.Stub]
  41. [Sharpen.OverridesMethod(@"android.content.ContentProviderNative")]
  42. public override string getProviderName()
  43. {
  44. throw new System.NotImplementedException();
  45. }
  46. [Sharpen.Stub]
  47. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  48. public override android.database.Cursor query(System.Uri uri, string[] projection
  49. , string selection, string[] selectionArgs, string sortOrder)
  50. {
  51. throw new System.NotImplementedException();
  52. }
  53. [Sharpen.Stub]
  54. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  55. public override string getType(System.Uri uri)
  56. {
  57. throw new System.NotImplementedException();
  58. }
  59. [Sharpen.Stub]
  60. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  61. public override System.Uri insert(System.Uri uri, android.content.ContentValues initialValues
  62. )
  63. {
  64. throw new System.NotImplementedException();
  65. }
  66. [Sharpen.Stub]
  67. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  68. public override int bulkInsert(System.Uri uri, android.content.ContentValues[] initialValues
  69. )
  70. {
  71. throw new System.NotImplementedException();
  72. }
  73. [Sharpen.Stub]
  74. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  75. public override android.content.ContentProviderResult[] applyBatch(java.util.ArrayList
  76. <android.content.ContentProviderOperation> operations)
  77. {
  78. throw new System.NotImplementedException();
  79. }
  80. [Sharpen.Stub]
  81. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  82. public override int delete(System.Uri uri, string selection, string[] selectionArgs
  83. )
  84. {
  85. throw new System.NotImplementedException();
  86. }
  87. [Sharpen.Stub]
  88. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  89. public override int update(System.Uri uri, android.content.ContentValues values,
  90. string selection, string[] selectionArgs)
  91. {
  92. throw new System.NotImplementedException();
  93. }
  94. [Sharpen.Stub]
  95. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  96. public override android.os.ParcelFileDescriptor openFile(System.Uri uri, string mode
  97. )
  98. {
  99. throw new System.NotImplementedException();
  100. }
  101. [Sharpen.Stub]
  102. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  103. public override android.content.res.AssetFileDescriptor openAssetFile(System.Uri
  104. uri, string mode)
  105. {
  106. throw new System.NotImplementedException();
  107. }
  108. [Sharpen.Stub]
  109. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  110. public override android.os.Bundle call(string method, string arg, android.os.Bundle
  111. extras)
  112. {
  113. throw new System.NotImplementedException();
  114. }
  115. [Sharpen.Stub]
  116. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  117. public override string[] getStreamTypes(System.Uri uri, string mimeTypeFilter)
  118. {
  119. throw new System.NotImplementedException();
  120. }
  121. [Sharpen.Stub]
  122. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  123. public override android.content.res.AssetFileDescriptor openTypedAssetFile(System.Uri
  124. uri, string mimeType, android.os.Bundle opts)
  125. {
  126. throw new System.NotImplementedException();
  127. }
  128. [Sharpen.Stub]
  129. private void enforceReadPermission(System.Uri uri)
  130. {
  131. throw new System.NotImplementedException();
  132. }
  133. [Sharpen.Stub]
  134. private bool hasWritePermission(System.Uri uri)
  135. {
  136. throw new System.NotImplementedException();
  137. }
  138. [Sharpen.Stub]
  139. private void enforceWritePermission(System.Uri uri)
  140. {
  141. throw new System.NotImplementedException();
  142. }
  143. internal Transport(ContentProvider _enclosing)
  144. {
  145. this._enclosing = _enclosing;
  146. }
  147. private readonly ContentProvider _enclosing;
  148. }
  149. [Sharpen.Stub]
  150. public android.content.Context getContext()
  151. {
  152. throw new System.NotImplementedException();
  153. }
  154. [Sharpen.Stub]
  155. protected internal void setReadPermission(string permission)
  156. {
  157. throw new System.NotImplementedException();
  158. }
  159. [Sharpen.Stub]
  160. public string getReadPermission()
  161. {
  162. throw new System.NotImplementedException();
  163. }
  164. [Sharpen.Stub]
  165. protected internal void setWritePermission(string permission)
  166. {
  167. throw new System.NotImplementedException();
  168. }
  169. [Sharpen.Stub]
  170. public string getWritePermission()
  171. {
  172. throw new System.NotImplementedException();
  173. }
  174. [Sharpen.Stub]
  175. protected internal void setPathPermissions(android.content.pm.PathPermission[] permissions
  176. )
  177. {
  178. throw new System.NotImplementedException();
  179. }
  180. [Sharpen.Stub]
  181. public android.content.pm.PathPermission[] getPathPermissions()
  182. {
  183. throw new System.NotImplementedException();
  184. }
  185. [Sharpen.Stub]
  186. public abstract bool onCreate();
  187. [Sharpen.Stub]
  188. [Sharpen.ImplementsInterface(@"android.content.ComponentCallbacks")]
  189. public virtual void onConfigurationChanged(android.content.res.Configuration newConfig
  190. )
  191. {
  192. throw new System.NotImplementedException();
  193. }
  194. [Sharpen.Stub]
  195. [Sharpen.ImplementsInterface(@"android.content.ComponentCallbacks")]
  196. public virtual void onLowMemory()
  197. {
  198. throw new System.NotImplementedException();
  199. }
  200. [Sharpen.Stub]
  201. [Sharpen.ImplementsInterface(@"android.content.ComponentCallbacks2")]
  202. public virtual void onTrimMemory(int level)
  203. {
  204. throw new System.NotImplementedException();
  205. }
  206. [Sharpen.Stub]
  207. public abstract android.database.Cursor query(System.Uri uri, string[] projection
  208. , string selection, string[] selectionArgs, string sortOrder);
  209. [Sharpen.Stub]
  210. public abstract string getType(System.Uri uri);
  211. [Sharpen.Stub]
  212. public abstract System.Uri insert(System.Uri uri, android.content.ContentValues values
  213. );
  214. [Sharpen.Stub]
  215. public virtual int bulkInsert(System.Uri uri, android.content.ContentValues[] values
  216. )
  217. {
  218. throw new System.NotImplementedException();
  219. }
  220. [Sharpen.Stub]
  221. public abstract int delete(System.Uri uri, string selection, string[] selectionArgs
  222. );
  223. [Sharpen.Stub]
  224. public abstract int update(System.Uri uri, android.content.ContentValues values,
  225. string selection, string[] selectionArgs);
  226. [Sharpen.Stub]
  227. public virtual android.os.ParcelFileDescriptor openFile(System.Uri uri, string mode
  228. )
  229. {
  230. throw new System.NotImplementedException();
  231. }
  232. [Sharpen.Stub]
  233. public virtual android.content.res.AssetFileDescriptor openAssetFile(System.Uri uri
  234. , string mode)
  235. {
  236. throw new System.NotImplementedException();
  237. }
  238. [Sharpen.Stub]
  239. protected internal android.os.ParcelFileDescriptor openFileHelper(System.Uri uri,
  240. string mode)
  241. {
  242. throw new System.NotImplementedException();
  243. }
  244. [Sharpen.Stub]
  245. public virtual string[] getStreamTypes(System.Uri uri, string mimeTypeFilter)
  246. {
  247. throw new System.NotImplementedException();
  248. }
  249. [Sharpen.Stub]
  250. public virtual android.content.res.AssetFileDescriptor openTypedAssetFile(System.Uri
  251. uri, string mimeTypeFilter, android.os.Bundle opts)
  252. {
  253. throw new System.NotImplementedException();
  254. }
  255. [Sharpen.Stub]
  256. public interface PipeDataWriter<T>
  257. {
  258. [Sharpen.Stub]
  259. void writeDataToPipe(android.os.ParcelFileDescriptor output, System.Uri uri, string
  260. mimeType, android.os.Bundle opts, T args);
  261. }
  262. [Sharpen.Stub]
  263. public virtual android.os.ParcelFileDescriptor openPipeHelper<T>(System.Uri uri,
  264. string mimeType, android.os.Bundle opts, T args, android.content.ContentProvider.PipeDataWriter
  265. <T> func)
  266. {
  267. throw new System.NotImplementedException();
  268. }
  269. [Sharpen.Stub]
  270. protected internal virtual bool isTemporary()
  271. {
  272. throw new System.NotImplementedException();
  273. }
  274. [Sharpen.Stub]
  275. public virtual android.content.IContentProvider getIContentProvider()
  276. {
  277. throw new System.NotImplementedException();
  278. }
  279. [Sharpen.Stub]
  280. public virtual void attachInfo(android.content.Context context, android.content.pm.ProviderInfo
  281. info)
  282. {
  283. throw new System.NotImplementedException();
  284. }
  285. [Sharpen.Stub]
  286. public virtual android.content.ContentProviderResult[] applyBatch(java.util.ArrayList
  287. <android.content.ContentProviderOperation> operations)
  288. {
  289. throw new System.NotImplementedException();
  290. }
  291. [Sharpen.Stub]
  292. public virtual android.os.Bundle call(string method, string arg, android.os.Bundle
  293. extras)
  294. {
  295. throw new System.NotImplementedException();
  296. }
  297. [Sharpen.Stub]
  298. public virtual void shutdown()
  299. {
  300. throw new System.NotImplementedException();
  301. }
  302. }
  303. }