Home | History | Annotate | Download | only in shadows
      1 package org.robolectric.annotation.processing.shadows;
      2 
      3 import com.example.objects.Dummy;
      4 import org.robolectric.annotation.Implementation;
      5 import org.robolectric.annotation.Implements;
      6 
      7 @Implements(Dummy.class)
      8 public class ShadowImplementationWithIncorrectVisibility {
      9   @Implementation
     10   public void __constructor__(int i0) {
     11   }
     12 
     13   @Implementation
     14   protected void __constructor__(int i0, int i1) {
     15   }
     16 
     17   @Implementation
     18   void __constructor__(int i0, int i1, int i2) {
     19   }
     20 
     21   @Implementation
     22   private void __constructor__(int i0, int i1, int i2, int i3) {
     23   }
     24 
     25   @Implementation
     26   public static void publicMethod() {}
     27 
     28   @Implementation
     29   protected static void protectedMethod() {}
     30 
     31   @Implementation
     32   static void packageMethod() {}
     33 
     34   @Implementation
     35   private static void privateMethod() {}
     36 }
     37