blob: d0c2535930e4076d987b929ed6b30c5cfb41fa6e [file] [log] [blame]
Andreas Gampe833a4852014-05-21 18:46:59 -07001/*
2 * Copyright (C) 2014 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
17public class Second implements Inf1, Inf2, Inf3, Inf4, Inf5, Inf6, Inf7, Inf8 {
18 public void zcall() {
19 System.out.println("Second::zcall");
20 }
21
22 public void zcall1() {
23 System.out.println("Second::zcall1");
24 }
25
26 public void zcall2() {
27 System.out.println("Second::zcall2");
28 }
29
30 public void zcall3() {
31 System.out.println("Second::zcall3");
32 }
33
34 public void zcall4() {
35 System.out.println("Second::zcall4");
36 }
37
38 public void zcall5() {
39 System.out.println("Second::zcall5");
40 }
41
42 public void zcall6() {
43 System.out.println("Second::zcall6");
44 }
45
46 public void zcall7() {
47 System.out.println("Second::zcall7");
48 }
49
50 public void zcall8() {
51 System.out.println("Second::zcall8");
52 }
53
54 public void zcall9() {
55 System.out.println("Second::zcall9");
56 }
57}