1 package com.xtremelabs.robolectric.shadows;
2 
3 import android.content.Context;
4 import android.view.ContextThemeWrapper;
5 import com.xtremelabs.robolectric.internal.Implements;
6 
7 @SuppressWarnings({"UnusedDeclaration"})
8 @Implements(ContextThemeWrapper.class)
9 public class ShadowContextThemeWrapper extends ShadowContextWrapper {
__constructor__(Context baseContext, int themesres)10     public void __constructor__(Context baseContext, int themesres) {
11         super.__constructor__(baseContext);
12     }
13 }