1 /* 2 * Copyright (C) 2024 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 public class A extends B implements I { 18 public int field; voidMethod()19 public void voidMethod() { 20 AbstractInvokeExactTest.STATUS = "A.voidMethod"; 21 } 22 23 @Override overrideMe()24 public void overrideMe() { 25 AbstractInvokeExactTest.STATUS = "A.overrideMe"; 26 } 27 throwException()28 public void throwException() { 29 AbstractInvokeExactTest.STATUS = "A.throwException"; 30 throw new MyRuntimeException(); 31 } 32 returnDouble()33 public double returnDouble() { 34 return 42.0d; 35 } 36 returnInt()37 public int returnInt() { 38 return 42; 39 } 40 privateReturnInt()41 private int privateReturnInt() { 42 return 1042; 43 } 44 staticMethod(A a)45 public static String staticMethod(A a) { 46 return "staticMethod"; 47 } 48 staticMethod()49 public static double staticMethod() { 50 return 41.0d; 51 } 52 } 53