1 /* 2 * Copyright (C) 2010 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 package dot.junit.opcodes.invoke_virtual.d; 18 19 public class TSuper { 20 toInt()21 public int toInt() { 22 return 0; 23 } 24 toInt(float value)25 public int toInt(float value) { 26 return 0; 27 } 28 toIntNative()29 public native int toIntNative(); 30 toIntStatic()31 public static int toIntStatic() { 32 return 0; 33 } 34 toIntP()35 protected int toIntP() { 36 return 0; 37 } 38 toIntPvt()39 private int toIntPvt() { 40 return 0; 41 } 42 testArgsOrder(int arg1, int arg2)43 public int testArgsOrder(int arg1, int arg2) { 44 return 0; 45 } 46 } 47