Throw AbstractMethodError instead
This commit is contained in:
parent
3a2eef1dbb
commit
3cc44464d6
|
|
@ -158,12 +158,12 @@ public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public AssetManager getAssets() {
|
public AssetManager getAssets() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Resources getResources() {
|
public Resources getResources() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -173,7 +173,7 @@ public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ContentResolver getContentResolver() {
|
public ContentResolver getContentResolver() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -183,17 +183,17 @@ public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Context getApplicationContext() {
|
public Context getApplicationContext() {
|
||||||
return base.getApplicationContext();
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setTheme(int resid) {
|
public void setTheme(int resid) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Resources.Theme getTheme() {
|
public Resources.Theme getTheme() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -213,7 +213,7 @@ public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getPackageResourcePath() {
|
public String getPackageResourcePath() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -223,330 +223,330 @@ public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SharedPreferences getSharedPreferences(String name, int mode) {
|
public SharedPreferences getSharedPreferences(String name, int mode) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean moveSharedPreferencesFrom(Context sourceContext, String name) {
|
public boolean moveSharedPreferencesFrom(Context sourceContext, String name) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean deleteSharedPreferences(String name) {
|
public boolean deleteSharedPreferences(String name) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FileInputStream openFileInput(String name) throws FileNotFoundException {
|
public FileInputStream openFileInput(String name) throws FileNotFoundException {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FileOutputStream openFileOutput(String name, int mode) throws FileNotFoundException {
|
public FileOutputStream openFileOutput(String name, int mode) throws FileNotFoundException {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean deleteFile(String name) {
|
public boolean deleteFile(String name) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getFileStreamPath(String name) {
|
public File getFileStreamPath(String name) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getDataDir() {
|
public File getDataDir() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getFilesDir() {
|
public File getFilesDir() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getNoBackupFilesDir() {
|
public File getNoBackupFilesDir() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public File getExternalFilesDir(@Nullable String type) {
|
public File getExternalFilesDir(@Nullable String type) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File[] getExternalFilesDirs(String type) {
|
public File[] getExternalFilesDirs(String type) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getObbDir() {
|
public File getObbDir() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File[] getObbDirs() {
|
public File[] getObbDirs() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getCacheDir() {
|
public File getCacheDir() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getCodeCacheDir() {
|
public File getCodeCacheDir() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public File getExternalCacheDir() {
|
public File getExternalCacheDir() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File[] getExternalCacheDirs() {
|
public File[] getExternalCacheDirs() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File[] getExternalMediaDirs() {
|
public File[] getExternalMediaDirs() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String[] fileList() {
|
public String[] fileList() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getDir(String name, int mode) {
|
public File getDir(String name, int mode) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SQLiteDatabase openOrCreateDatabase(String name, int mode, SQLiteDatabase.CursorFactory factory) {
|
public SQLiteDatabase openOrCreateDatabase(String name, int mode, SQLiteDatabase.CursorFactory factory) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SQLiteDatabase openOrCreateDatabase(String name, int mode, SQLiteDatabase.CursorFactory factory, @Nullable DatabaseErrorHandler errorHandler) {
|
public SQLiteDatabase openOrCreateDatabase(String name, int mode, SQLiteDatabase.CursorFactory factory, @Nullable DatabaseErrorHandler errorHandler) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean moveDatabaseFrom(Context sourceContext, String name) {
|
public boolean moveDatabaseFrom(Context sourceContext, String name) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean deleteDatabase(String name) {
|
public boolean deleteDatabase(String name) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getDatabasePath(String name) {
|
public File getDatabasePath(String name) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String[] databaseList() {
|
public String[] databaseList() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Drawable getWallpaper() {
|
public Drawable getWallpaper() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Drawable peekWallpaper() {
|
public Drawable peekWallpaper() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getWallpaperDesiredMinimumWidth() {
|
public int getWallpaperDesiredMinimumWidth() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getWallpaperDesiredMinimumHeight() {
|
public int getWallpaperDesiredMinimumHeight() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setWallpaper(Bitmap bitmap) throws IOException {
|
public void setWallpaper(Bitmap bitmap) throws IOException {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setWallpaper(InputStream data) throws IOException {
|
public void setWallpaper(InputStream data) throws IOException {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void clearWallpaper() throws IOException {
|
public void clearWallpaper() throws IOException {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void startActivity(Intent intent) {
|
public void startActivity(Intent intent) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void startActivity(Intent intent, @Nullable Bundle options) {
|
public void startActivity(Intent intent, @Nullable Bundle options) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void startActivities(Intent[] intents) {
|
public void startActivities(Intent[] intents) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void startActivities(Intent[] intents, Bundle options) {
|
public void startActivities(Intent[] intents, Bundle options) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void startIntentSender(IntentSender intent, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) throws IntentSender.SendIntentException {
|
public void startIntentSender(IntentSender intent, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) throws IntentSender.SendIntentException {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void startIntentSender(IntentSender intent, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, @Nullable Bundle options) throws IntentSender.SendIntentException {
|
public void startIntentSender(IntentSender intent, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, @Nullable Bundle options) throws IntentSender.SendIntentException {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendBroadcast(Intent intent) {
|
public void sendBroadcast(Intent intent) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendBroadcast(Intent intent, @Nullable String receiverPermission) {
|
public void sendBroadcast(Intent intent, @Nullable String receiverPermission) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendOrderedBroadcast(Intent intent, @Nullable String receiverPermission) {
|
public void sendOrderedBroadcast(Intent intent, @Nullable String receiverPermission) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendOrderedBroadcast(@NonNull Intent intent, @Nullable String receiverPermission, @Nullable BroadcastReceiver resultReceiver, @Nullable Handler scheduler, int initialCode, @Nullable String initialData, @Nullable Bundle initialExtras) {
|
public void sendOrderedBroadcast(@NonNull Intent intent, @Nullable String receiverPermission, @Nullable BroadcastReceiver resultReceiver, @Nullable Handler scheduler, int initialCode, @Nullable String initialData, @Nullable Bundle initialExtras) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendBroadcastAsUser(Intent intent, UserHandle user) {
|
public void sendBroadcastAsUser(Intent intent, UserHandle user) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendBroadcastAsUser(Intent intent, UserHandle user, @Nullable String receiverPermission) {
|
public void sendBroadcastAsUser(Intent intent, UserHandle user, @Nullable String receiverPermission) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendOrderedBroadcastAsUser(Intent intent, UserHandle user, @Nullable String receiverPermission, BroadcastReceiver resultReceiver, @Nullable Handler scheduler, int initialCode, @Nullable String initialData, @Nullable Bundle initialExtras) {
|
public void sendOrderedBroadcastAsUser(Intent intent, UserHandle user, @Nullable String receiverPermission, BroadcastReceiver resultReceiver, @Nullable Handler scheduler, int initialCode, @Nullable String initialData, @Nullable Bundle initialExtras) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendStickyBroadcast(Intent intent) {
|
public void sendStickyBroadcast(Intent intent) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendStickyOrderedBroadcast(Intent intent, BroadcastReceiver resultReceiver, @Nullable Handler scheduler, int initialCode, @Nullable String initialData, @Nullable Bundle initialExtras) {
|
public void sendStickyOrderedBroadcast(Intent intent, BroadcastReceiver resultReceiver, @Nullable Handler scheduler, int initialCode, @Nullable String initialData, @Nullable Bundle initialExtras) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void removeStickyBroadcast(Intent intent) {
|
public void removeStickyBroadcast(Intent intent) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendStickyBroadcastAsUser(Intent intent, UserHandle user) {
|
public void sendStickyBroadcastAsUser(Intent intent, UserHandle user) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendStickyOrderedBroadcastAsUser(Intent intent, UserHandle user, BroadcastReceiver resultReceiver, @Nullable Handler scheduler, int initialCode, @Nullable String initialData, @Nullable Bundle initialExtras) {
|
public void sendStickyOrderedBroadcastAsUser(Intent intent, UserHandle user, BroadcastReceiver resultReceiver, @Nullable Handler scheduler, int initialCode, @Nullable String initialData, @Nullable Bundle initialExtras) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void removeStickyBroadcastAsUser(Intent intent, UserHandle user) {
|
public void removeStickyBroadcastAsUser(Intent intent, UserHandle user) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public Intent registerReceiver(@Nullable BroadcastReceiver receiver, IntentFilter filter) {
|
public Intent registerReceiver(@Nullable BroadcastReceiver receiver, IntentFilter filter) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public Intent registerReceiver(@Nullable BroadcastReceiver receiver, IntentFilter filter, int flags) {
|
public Intent registerReceiver(@Nullable BroadcastReceiver receiver, IntentFilter filter, int flags) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter, @Nullable String broadcastPermission, @Nullable Handler scheduler) {
|
public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter, @Nullable String broadcastPermission, @Nullable Handler scheduler) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter, @Nullable String broadcastPermission, @Nullable Handler scheduler, int flags) {
|
public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter, @Nullable String broadcastPermission, @Nullable Handler scheduler, int flags) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void unregisterReceiver(BroadcastReceiver receiver) {
|
public void unregisterReceiver(BroadcastReceiver receiver) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public ComponentName startService(Intent service) {
|
public ComponentName startService(Intent service) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public ComponentName startForegroundService(Intent service) {
|
public ComponentName startForegroundService(Intent service) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean stopService(Intent service) {
|
public boolean stopService(Intent service) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean bindService(Intent service, @NonNull ServiceConnection conn, int flags) {
|
public boolean bindService(Intent service, @NonNull ServiceConnection conn, int flags) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void unbindService(@NonNull ServiceConnection conn) {
|
public void unbindService(@NonNull ServiceConnection conn) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean startInstrumentation(@NonNull ComponentName className, @Nullable String profileFile, @Nullable Bundle arguments) {
|
public boolean startInstrumentation(@NonNull ComponentName className, @Nullable String profileFile, @Nullable Bundle arguments) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -557,132 +557,132 @@ public class LSPosedContext extends XposedContext {
|
||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public String getSystemServiceName(@NonNull Class<?> serviceClass) {
|
public String getSystemServiceName(@NonNull Class<?> serviceClass) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int checkPermission(@NonNull String permission, int pid, int uid) {
|
public int checkPermission(@NonNull String permission, int pid, int uid) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int checkCallingPermission(@NonNull String permission) {
|
public int checkCallingPermission(@NonNull String permission) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int checkCallingOrSelfPermission(@NonNull String permission) {
|
public int checkCallingOrSelfPermission(@NonNull String permission) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int checkSelfPermission(@NonNull String permission) {
|
public int checkSelfPermission(@NonNull String permission) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void enforcePermission(@NonNull String permission, int pid, int uid, @Nullable String message) {
|
public void enforcePermission(@NonNull String permission, int pid, int uid, @Nullable String message) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void enforceCallingPermission(@NonNull String permission, @Nullable String message) {
|
public void enforceCallingPermission(@NonNull String permission, @Nullable String message) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void enforceCallingOrSelfPermission(@NonNull String permission, @Nullable String message) {
|
public void enforceCallingOrSelfPermission(@NonNull String permission, @Nullable String message) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void grantUriPermission(String toPackage, Uri uri, int modeFlags) {
|
public void grantUriPermission(String toPackage, Uri uri, int modeFlags) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void revokeUriPermission(Uri uri, int modeFlags) {
|
public void revokeUriPermission(Uri uri, int modeFlags) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void revokeUriPermission(String toPackage, Uri uri, int modeFlags) {
|
public void revokeUriPermission(String toPackage, Uri uri, int modeFlags) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int checkUriPermission(Uri uri, int pid, int uid, int modeFlags) {
|
public int checkUriPermission(Uri uri, int pid, int uid, int modeFlags) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int checkCallingUriPermission(Uri uri, int modeFlags) {
|
public int checkCallingUriPermission(Uri uri, int modeFlags) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int checkCallingOrSelfUriPermission(Uri uri, int modeFlags) {
|
public int checkCallingOrSelfUriPermission(Uri uri, int modeFlags) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int checkUriPermission(@Nullable Uri uri, @Nullable String readPermission, @Nullable String writePermission, int pid, int uid, int modeFlags) {
|
public int checkUriPermission(@Nullable Uri uri, @Nullable String readPermission, @Nullable String writePermission, int pid, int uid, int modeFlags) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void enforceUriPermission(Uri uri, int pid, int uid, int modeFlags, String message) {
|
public void enforceUriPermission(Uri uri, int pid, int uid, int modeFlags, String message) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void enforceCallingUriPermission(Uri uri, int modeFlags, String message) {
|
public void enforceCallingUriPermission(Uri uri, int modeFlags, String message) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void enforceCallingOrSelfUriPermission(Uri uri, int modeFlags, String message) {
|
public void enforceCallingOrSelfUriPermission(Uri uri, int modeFlags, String message) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void enforceUriPermission(@Nullable Uri uri, @Nullable String readPermission, @Nullable String writePermission, int pid, int uid, int modeFlags, @Nullable String message) {
|
public void enforceUriPermission(@Nullable Uri uri, @Nullable String readPermission, @Nullable String writePermission, int pid, int uid, int modeFlags, @Nullable String message) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Context createPackageContext(String packageName, int flags) throws PackageManager.NameNotFoundException {
|
public Context createPackageContext(String packageName, int flags) throws PackageManager.NameNotFoundException {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Context createContextForSplit(String splitName) throws PackageManager.NameNotFoundException {
|
public Context createContextForSplit(String splitName) throws PackageManager.NameNotFoundException {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Context createConfigurationContext(@NonNull Configuration overrideConfiguration) {
|
public Context createConfigurationContext(@NonNull Configuration overrideConfiguration) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Context createDisplayContext(@NonNull Display display) {
|
public Context createDisplayContext(@NonNull Display display) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Context createDeviceProtectedStorageContext() {
|
public Context createDeviceProtectedStorageContext() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isDeviceProtectedStorage() {
|
public boolean isDeviceProtectedStorage() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void hook() {
|
public void hook() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
throw new AbstractMethodError();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue