Files
android_translation_layer/src/api-impl/android/content/ContextWrapper.java
Julian Winkler 82744e9e5e add bunch of new java APIs: mostly stubs or copied from AOSP
Many of these classes are only needed to be subclassed by androidx
support library, which is used in many android apps
2023-08-22 15:53:09 +02:00

15 lines
251 B
Java

package android.content;
public class ContextWrapper extends Context {
private Context baseContext;
public ContextWrapper(Context baseContext) {
this.baseContext = baseContext;
}
public Context getBaseContext() {
return baseContext;
}
}