Ejemplo n.º 1
0
		public override android.content.pm.InstrumentationInfo getInstrumentationInfo(android.content.ComponentName
			 className, int flags)
		{
			try
			{
				android.content.pm.InstrumentationInfo ii = mPM.getInstrumentationInfo(className, 
					flags);
				if (ii != null)
				{
					return ii;
				}
			}
			catch (android.os.RemoteException e)
			{
				throw new java.lang.RuntimeException("Package manager has died", e);
			}
			throw new android.content.pm.PackageManager.NameNotFoundException(className.ToString
				());
		}
Ejemplo n.º 2
0
		public virtual java.lang.CharSequence convertToString(android.database.Cursor cursor
			)
		{
			return java.lang.CharSequenceProxy.Wrap(cursor == null ? string.Empty : cursor.ToString
				());
		}
Ejemplo n.º 3
0
		public virtual string convertToString(android.database.Cursor cursor)
		{
			return cursor == null ? string.Empty : cursor.ToString();
		}