Rename for consistency

This commit is contained in:
Dominik Schürmann 2015-05-18 11:10:57 +02:00
parent 03b7f59dce
commit 51b2aeda1a
2 changed files with 9 additions and 9 deletions

View File

@ -37,15 +37,15 @@ import eu.chainfire.libsuperuser.Shell;
* https://github.com/omerjerk/RemoteDroid/blob/master/app/src/main/java/in/omerjerk/remotedroid/app/MainActivity.java
*/
@TargetApi(Build.VERSION_CODES.FROYO)
abstract class InstallFDroidAsSystem {
abstract class InstallIntoSystem {
protected final Context context;
public InstallFDroidAsSystem(final Context context) {
public InstallIntoSystem(final Context context) {
this.context = context;
}
public static InstallFDroidAsSystem create(final Context context) {
public static InstallIntoSystem create(final Context context) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
return new LollipopImpl(context);
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
@ -111,7 +111,7 @@ abstract class InstallFDroidAsSystem {
return commands;
}
private static class PreKitKatImpl extends InstallFDroidAsSystem {
private static class PreKitKatImpl extends InstallIntoSystem {
public PreKitKatImpl(Context context) {
super(context);
@ -124,7 +124,7 @@ abstract class InstallFDroidAsSystem {
}
private static class KitKatToLollipopImpl extends InstallFDroidAsSystem {
private static class KitKatToLollipopImpl extends InstallIntoSystem {
public KitKatToLollipopImpl(Context context) {
super(context);
@ -145,7 +145,7 @@ abstract class InstallFDroidAsSystem {
* History of PackageManagerService in Lollipop:
* https://github.com/android/platform_frameworks_base/commits/lollipop-release/services/core/java/com/android/server/pm/PackageManagerService.java
*/
private static class LollipopImpl extends InstallFDroidAsSystem {
private static class LollipopImpl extends InstallIntoSystem {
public LollipopImpl(Context context) {
super(context);

View File

@ -85,7 +85,7 @@ public class InstallIntoSystemDialogActivity extends FragmentActivity {
ContextThemeWrapper theme = new ContextThemeWrapper(this, FDroidApp.getCurThemeResId());
AlertDialog.Builder builder = new AlertDialog.Builder(theme);
String message = getString(R.string.system_install_first_time_message) + "<br/><br/>" + InstallFDroidAsSystem.create(getApplicationContext()).getWarningInfo();
String message = getString(R.string.system_install_first_time_message) + "<br/><br/>" + InstallIntoSystem.create(getApplicationContext()).getWarningInfo();
builder.setMessage(Html.fromHtml(message));
builder.setPositiveButton(R.string.system_permission_install_via_root, new DialogInterface.OnClickListener() {
@Override
@ -192,7 +192,7 @@ public class InstallIntoSystemDialogActivity extends FragmentActivity {
@Override
protected Void doInBackground(Void... voids) {
InstallFDroidAsSystem.create(getApplicationContext()).runInstall();
InstallIntoSystem.create(getApplicationContext()).runInstall();
return null;
}
};
@ -282,7 +282,7 @@ public class InstallIntoSystemDialogActivity extends FragmentActivity {
@Override
protected Void doInBackground(Void... voids) {
InstallFDroidAsSystem.create(getApplicationContext()).runUninstall();
InstallIntoSystem.create(getApplicationContext()).runUninstall();
return null;
}