Home | History | Annotate | Download | only in shadows
      1 package org.robolectric.shadows;
      2 
      3 import android.widget.FrameLayout;
      4 import org.robolectric.annotation.Implements;
      5 
      6 @SuppressWarnings("UnusedDeclaration")
      7 @Implements(FrameLayout.class)
      8 public class ShadowFrameLayout extends ShadowViewGroup {
      9 }
     10