blob: 007b57ee43e33af1eb5ee72a2d3ef4b81a3a750b [file] [log] [blame]
smain@google.coma0a6d322016-02-05 17:34:22 -08001<?cs # THIS CREATES A LIST OF ALL PACKAGES AND NAMES IT packages.html ?>
Dirk Dougherty541b4942014-02-14 18:31:53 -08002<?cs include:"macros.cs" ?>
Dirk Doughertyff233cc2015-05-04 14:37:05 -07003<?cs include:"macros_override.cs" ?>
smain@google.coma0a6d322016-02-05 17:34:22 -08004<?cs include:"doctype.cs" ?>
Dirk Dougherty541b4942014-02-14 18:31:53 -08005<html<?cs if:devsite ?> devsite<?cs /if ?>>
6<?cs include:"head_tag.cs" ?>
smain@google.coma0a6d322016-02-05 17:34:22 -08007<?cs include:"body_tag.cs" ?>
Dirk Dougherty541b4942014-02-14 18:31:53 -08008<?cs include:"header.cs" ?>
9
Dirk Dougherty541b4942014-02-14 18:31:53 -080010<h1><?cs var:page.title ?></h1>
smain@google.coma0a6d322016-02-05 17:34:22 -080011<p>These are the API classes. See all
12<a href="packages.html">API packages</a>.</p>
Dirk Dougherty541b4942014-02-14 18:31:53 -080013
smain@google.coma0a6d322016-02-05 17:34:22 -080014<div class="jd-letterlist"><?cs
15 each:letter=docs.classes ?>
16 <a href="#letter_<?cs name:letter ?>"><?cs
17 name:letter ?></a>&nbsp;&nbsp;<?cs
18 /each?>
Dirk Dougherty541b4942014-02-14 18:31:53 -080019</div>
20
21<?cs each:letter=docs.classes ?>
22<?cs set:count = #1 ?>
23<h2 id="letter_<?cs name:letter ?>"><?cs name:letter ?></h2>
smain@google.coma0a6d322016-02-05 17:34:22 -080024<table>
Dirk Dougherty541b4942014-02-14 18:31:53 -080025 <?cs set:cur_row = #0 ?>
26 <?cs each:cl = letter ?>
27 <tr class="<?cs if:count % #2 ?>alt-color<?cs /if ?> api apilevel-<?cs var:cl.since ?>" >
28 <td class="jd-linkcol"><?cs call:type_link(cl.type) ?></td>
Dirk Doughertyff233cc2015-05-04 14:37:05 -070029 <td class="jd-descrcol" width="100%">
30 <?cs call:short_descr(cl) ?>&nbsp;
31 <?cs call:show_annotations_list(cl) ?>
32 </td>
Dirk Dougherty541b4942014-02-14 18:31:53 -080033 </tr>
34 <?cs set:count = count + #1 ?>
35 <?cs /each ?>
36</table>
37<?cs /each ?>
38
Amanda Kassay307d36d2016-05-04 22:31:54 -040039<?cs if:devsite ?>
40<div class="data-reference-resources-wrapper">
41 <?cs if:subcount(class.package) ?>
42 <ul data-reference-resources>
43 <?cs call:list("Annotations", class.package.annotations) ?>
44 <?cs call:list("Interfaces", class.package.interfaces) ?>
45 <?cs call:list("Classes", class.package.classes) ?>
46 <?cs call:list("Enums", class.package.enums) ?>
47 <?cs call:list("Exceptions", class.package.exceptions) ?>
48 <?cs call:list("Errors", class.package.errors) ?>
49 </ul>
50 <?cs elif:subcount(package) ?>
51 <ul data-reference-resources>
52 <?cs call:class_link_list("Annotations", package.annotations) ?>
53 <?cs call:class_link_list("Interfaces", package.interfaces) ?>
54 <?cs call:class_link_list("Classes", package.classes) ?>
55 <?cs call:class_link_list("Enums", package.enums) ?>
56 <?cs call:class_link_list("Exceptions", package.exceptions) ?>
57 <?cs call:class_link_list("Errors", package.errors) ?>
58 </ul>
59 <?cs /if ?>
60</div>
61<?cs /if ?>
62
63
Amanda Kassaye4a8ab12016-03-29 16:11:01 -040064<?cs if:!devsite ?>
Dirk Dougherty0dc81b92015-12-08 14:49:52 -080065<?cs include:"footer.cs" ?>
Dirk Dougherty541b4942014-02-14 18:31:53 -080066<?cs include:"trailer.cs" ?>
Amanda Kassaye4a8ab12016-03-29 16:11:01 -040067<?cs /if ?>
Dirk Dougherty541b4942014-02-14 18:31:53 -080068</body>
Dirk Dougherty0dc81b92015-12-08 14:49:52 -080069</html>