1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright 2015 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 <data> 18 <classes> 19 <class name="A" super="java/lang/Object"> 20 <implements> 21 <item>Greeter</item> 22 </implements> 23 <methods> </methods> 24 </class> 25 26 <class name="B" super="java/lang/Object"> 27 <implements> 28 <item>Greeter2</item> 29 </implements> 30 <methods> </methods> 31 </class> 32 33 <class name="C" super="A"> 34 <implements> </implements> 35 <methods> </methods> 36 </class> 37 38 <class name="D" super="java/lang/Object"> 39 <implements> 40 <item>Greeter3</item> 41 </implements> 42 <methods> </methods> 43 </class> 44 45 <class name="E" super="A"> 46 <implements> 47 <item>Greeter2</item> 48 </implements> 49 <methods> </methods> 50 </class> 51 52 <class name="F" super="A"> 53 <implements> 54 <item>Attendant</item> 55 </implements> 56 <methods> </methods> 57 </class> 58 59 <class name="G" super="java/lang/Object"> 60 <implements> 61 <item>Attendant</item> 62 </implements> 63 <methods> </methods> 64 </class> 65 66 <class name="H" super="java/lang/Object"> 67 <implements> 68 <item>Extension</item> 69 </implements> 70 <methods> </methods> 71 </class> 72 73 <class name="I" super="A"> 74 <implements> 75 <item>Greeter2</item> 76 </implements> 77 <methods> </methods> 78 </class> 79 80 <class name="J" super="A"> 81 <implements> </implements> 82 <methods> </methods> 83 </class> 84 85 <class name="K" super="java/lang/Object"> 86 <implements> 87 <item>Foo</item> 88 </implements> 89 <methods> </methods> 90 </class> 91 92 <class name="L" super="K"> 93 <implements> </implements> 94 <methods> </methods> 95 </class> 96 97 <class name="M" super="L"> 98 <implements> 99 <item>Fooer</item> 100 </implements> 101 <methods> 102 <method>bar</method> 103 </methods> 104 </class> 105 </classes> 106 107 <interfaces> 108 <interface name="Extension" super="java/lang/Object"> 109 <implements> </implements> 110 <methods> 111 <method type="default">SayHi</method> 112 </methods> 113 </interface> 114 115 <interface name="Greeter" super="java/lang/Object"> 116 <implements> </implements> 117 <methods> 118 <method type="abstract">SayHi</method> 119 <method type="default">SayHiTwice</method> 120 </methods> 121 </interface> 122 123 <interface name="Greeter2" super="java/lang/Object"> 124 <implements> 125 <item>Greeter</item> 126 </implements> 127 <methods> </methods> 128 </interface> 129 130 <interface name="Greeter3" super="java/lang/Object"> 131 <implements> 132 <item>Greeter</item> 133 </implements> 134 <methods> 135 <method type="abstract">GetName</method> 136 </methods> 137 </interface> 138 139 <interface name="Attendant" super="java/lang/Object"> 140 <implements> </implements> 141 <methods> 142 <method type="default">SayHi</method> 143 <method type="default">SayHiTwice</method> 144 <method type="abstract">GetPlace</method> 145 </methods> 146 </interface> 147 148 <interface name="Foo" super="java/lang/Object"> 149 <implements> 150 </implements> 151 <methods> 152 <method type="default">bar</method> 153 </methods> 154 </interface> 155 156 <interface name="Fooer" super="java/lang/Object"> 157 <implements> 158 <item>Foo</item> 159 </implements> 160 <methods> 161 <method type="abstract">bar</method> 162 </methods> 163 </interface> 164 </interfaces> 165 </data> 166