xref: /aosp_15_r20/art/test/113-multidex/src/Second.java (revision 795d594fd825385562da6b089ea9b2033f3abf5a)
1*795d594fSAndroid Build Coastguard Worker /*
2*795d594fSAndroid Build Coastguard Worker  * Copyright (C) 2014 The Android Open Source Project
3*795d594fSAndroid Build Coastguard Worker  *
4*795d594fSAndroid Build Coastguard Worker  * Licensed under the Apache License, Version 2.0 (the "License");
5*795d594fSAndroid Build Coastguard Worker  * you may not use this file except in compliance with the License.
6*795d594fSAndroid Build Coastguard Worker  * You may obtain a copy of the License at
7*795d594fSAndroid Build Coastguard Worker  *
8*795d594fSAndroid Build Coastguard Worker  *      http://www.apache.org/licenses/LICENSE-2.0
9*795d594fSAndroid Build Coastguard Worker  *
10*795d594fSAndroid Build Coastguard Worker  * Unless required by applicable law or agreed to in writing, software
11*795d594fSAndroid Build Coastguard Worker  * distributed under the License is distributed on an "AS IS" BASIS,
12*795d594fSAndroid Build Coastguard Worker  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*795d594fSAndroid Build Coastguard Worker  * See the License for the specific language governing permissions and
14*795d594fSAndroid Build Coastguard Worker  * limitations under the License.
15*795d594fSAndroid Build Coastguard Worker  */
16*795d594fSAndroid Build Coastguard Worker 
17*795d594fSAndroid Build Coastguard Worker public class Second implements Inf1, Inf2, Inf3, Inf4, Inf5, Inf6, Inf7, Inf8 {
zcall()18*795d594fSAndroid Build Coastguard Worker   public void zcall() {
19*795d594fSAndroid Build Coastguard Worker     System.out.println("Second::zcall");
20*795d594fSAndroid Build Coastguard Worker   }
21*795d594fSAndroid Build Coastguard Worker 
zcall1()22*795d594fSAndroid Build Coastguard Worker   public void zcall1() {
23*795d594fSAndroid Build Coastguard Worker     System.out.println("Second::zcall1");
24*795d594fSAndroid Build Coastguard Worker   }
25*795d594fSAndroid Build Coastguard Worker 
zcall2()26*795d594fSAndroid Build Coastguard Worker   public void zcall2() {
27*795d594fSAndroid Build Coastguard Worker     System.out.println("Second::zcall2");
28*795d594fSAndroid Build Coastguard Worker   }
29*795d594fSAndroid Build Coastguard Worker 
zcall3()30*795d594fSAndroid Build Coastguard Worker   public void zcall3() {
31*795d594fSAndroid Build Coastguard Worker     System.out.println("Second::zcall3");
32*795d594fSAndroid Build Coastguard Worker   }
33*795d594fSAndroid Build Coastguard Worker 
zcall4()34*795d594fSAndroid Build Coastguard Worker   public void zcall4() {
35*795d594fSAndroid Build Coastguard Worker     System.out.println("Second::zcall4");
36*795d594fSAndroid Build Coastguard Worker   }
37*795d594fSAndroid Build Coastguard Worker 
zcall5()38*795d594fSAndroid Build Coastguard Worker   public void zcall5() {
39*795d594fSAndroid Build Coastguard Worker     System.out.println("Second::zcall5");
40*795d594fSAndroid Build Coastguard Worker   }
41*795d594fSAndroid Build Coastguard Worker 
zcall6()42*795d594fSAndroid Build Coastguard Worker   public void zcall6() {
43*795d594fSAndroid Build Coastguard Worker     System.out.println("Second::zcall6");
44*795d594fSAndroid Build Coastguard Worker   }
45*795d594fSAndroid Build Coastguard Worker 
zcall7()46*795d594fSAndroid Build Coastguard Worker   public void zcall7() {
47*795d594fSAndroid Build Coastguard Worker     System.out.println("Second::zcall7");
48*795d594fSAndroid Build Coastguard Worker   }
49*795d594fSAndroid Build Coastguard Worker 
zcall8()50*795d594fSAndroid Build Coastguard Worker   public void zcall8() {
51*795d594fSAndroid Build Coastguard Worker     System.out.println("Second::zcall8");
52*795d594fSAndroid Build Coastguard Worker   }
53*795d594fSAndroid Build Coastguard Worker 
zcall9()54*795d594fSAndroid Build Coastguard Worker   public void zcall9() {
55*795d594fSAndroid Build Coastguard Worker     System.out.println("Second::zcall9");
56*795d594fSAndroid Build Coastguard Worker   }
57*795d594fSAndroid Build Coastguard Worker }
58