• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.robolectric.shadows;
2 
3 import static android.os.Build.VERSION_CODES.LOLLIPOP;
4 
5 import android.graphics.Outline;
6 import android.graphics.Path;
7 import org.robolectric.annotation.Implementation;
8 import org.robolectric.annotation.Implements;
9 
10 @Implements(value = Outline.class, minSdk = LOLLIPOP)
11 public class ShadowOutline {
12 
13   @Implementation
setConvexPath(Path convexPath)14   protected void setConvexPath(Path convexPath) {}
15 }