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