1 package com.android.stubs; 2 public enum InterfaceEnum 3 implements com.android.stubs.Parent.Interface 4 { 5 VAL(); method()6 public void method() { throw new RuntimeException("Stub!"); } 7 public static final java.lang.Object OBJECT; 8 static { OBJECT = null; } 9 } 10