Files
android_translation_layer/src/api-impl/android/content/ContextWrapper.java
2024-06-16 08:45:31 +02:00

19 lines
345 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;
}
protected void attachBaseContext(Context baseContext) {
this.baseContext = baseContext;
}
}