Home | History | Annotate | Download | only in src
      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 
    106     <class name="N" super="java/lang/Object">
    107       <implements>
    108         <item>Foo</item>
    109       </implements>
    110       <methods> </methods>
    111     </class>
    112 
    113     <class name="O" super="N">
    114       <implements>
    115         <item>Foo2</item>
    116       </implements>
    117       <methods> </methods>
    118     </class>
    119 
    120     <class name="P" super="O">
    121       <implements>
    122         <item>Foo2</item>
    123       </implements>
    124       <methods>
    125         <method>bar</method>
    126       </methods>
    127     </class>
    128 
    129     <class name="Q" super="O">
    130       <implements>
    131         <item>Foo2</item>
    132         <item>Foo3</item>
    133       </implements>
    134       <methods> </methods>
    135     </class>
    136   </classes>
    137 
    138   <interfaces>
    139     <interface name="Extension" super="java/lang/Object">
    140       <implements> </implements>
    141       <methods>
    142         <method type="default">SayHi</method>
    143       </methods>
    144     </interface>
    145 
    146     <interface name="Greeter" super="java/lang/Object">
    147       <implements> </implements>
    148       <methods>
    149         <method type="abstract">SayHi</method>
    150         <method type="default">SayHiTwice</method>
    151       </methods>
    152     </interface>
    153 
    154     <interface name="Greeter2" super="java/lang/Object">
    155       <implements>
    156         <item>Greeter</item>
    157       </implements>
    158       <methods> </methods>
    159     </interface>
    160 
    161     <interface name="Greeter3" super="java/lang/Object">
    162       <implements>
    163         <item>Greeter</item>
    164       </implements>
    165       <methods>
    166         <method type="abstract">GetName</method>
    167       </methods>
    168     </interface>
    169 
    170     <interface name="Attendant" super="java/lang/Object">
    171       <implements> </implements>
    172       <methods>
    173         <method type="default">SayHi</method>
    174         <method type="default">SayHiTwice</method>
    175         <method type="abstract">GetPlace</method>
    176       </methods>
    177     </interface>
    178 
    179     <interface name="Foo" super="java/lang/Object">
    180       <implements>
    181       </implements>
    182       <methods>
    183         <method type="default">bar</method>
    184       </methods>
    185     </interface>
    186 
    187     <interface name="Foo2" super="java/lang/Object">
    188       <implements>
    189         <item>Foo</item>
    190       </implements>
    191       <methods>
    192         <method type="default">bar</method>
    193       </methods>
    194     </interface>
    195 
    196     <interface name="Foo3" super="java/lang/Object">
    197       <implements>
    198         <item>Foo</item>
    199       </implements>
    200       <methods>
    201         <method type="default">bar</method>
    202       </methods>
    203     </interface>
    204 
    205     <interface name="Fooer" super="java/lang/Object">
    206       <implements>
    207         <item>Foo</item>
    208       </implements>
    209       <methods>
    210         <method type="abstract">bar</method>
    211       </methods>
    212     </interface>
    213   </interfaces>
    214 </data>
    215