blob: 3fcfb8188d8c67e5a8d94771eeb450ca4f48d642 [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" ?>
smain@google.coma0a6d322016-02-05 17:34:22 -08003<?cs include:"doctype.cs" ?>
Dirk Dougherty541b4942014-02-14 18:31:53 -08004<html<?cs if:devsite ?> devsite<?cs /if ?>>
5<?cs include:"head_tag.cs" ?>
smain@google.coma0a6d322016-02-05 17:34:22 -08006<?cs include:"body_tag.cs" ?>
Dirk Dougherty541b4942014-02-14 18:31:53 -08007<?cs include:"header.cs" ?>
8
Dirk Dougherty541b4942014-02-14 18:31:53 -08009<h1><?cs var:page.title ?></h1>
smain@google.coma0a6d322016-02-05 17:34:22 -080010<p>These are the API packages.
11See all <a href="classes.html">API classes</a>.</p>
Dirk Dougherty541b4942014-02-14 18:31:53 -080012
13<?cs set:count = #1 ?>
smain@google.coma0a6d322016-02-05 17:34:22 -080014<table>
Dirk Dougherty541b4942014-02-14 18:31:53 -080015<?cs each:pkg = docs.packages ?>
smain@google.coma0a6d322016-02-05 17:34:22 -080016 <tr class="api apilevel-<?cs var:pkg.since ?>" >
Dirk Dougherty541b4942014-02-14 18:31:53 -080017 <td class="jd-linkcol"><?cs call:package_link(pkg) ?></td>
18 <td class="jd-descrcol" width="100%"><?cs call:tag_list(pkg.shortDescr) ?></td>
19 </tr>
20<?cs set:count = count + #1 ?>
21<?cs /each ?>
22</table>
23
Amanda Kassay307d36d2016-05-04 22:31:54 -040024<?cs if:devsite ?>
25<div class="data-reference-resources-wrapper">
26 <?cs if:subcount(class.package) ?>
27 <ul data-reference-resources>
28 <?cs call:list("Annotations", class.package.annotations) ?>
29 <?cs call:list("Interfaces", class.package.interfaces) ?>
30 <?cs call:list("Classes", class.package.classes) ?>
31 <?cs call:list("Enums", class.package.enums) ?>
32 <?cs call:list("Exceptions", class.package.exceptions) ?>
33 <?cs call:list("Errors", class.package.errors) ?>
34 </ul>
35 <?cs elif:subcount(package) ?>
36 <ul data-reference-resources>
37 <?cs call:class_link_list("Annotations", package.annotations) ?>
38 <?cs call:class_link_list("Interfaces", package.interfaces) ?>
39 <?cs call:class_link_list("Classes", package.classes) ?>
40 <?cs call:class_link_list("Enums", package.enums) ?>
41 <?cs call:class_link_list("Exceptions", package.exceptions) ?>
42 <?cs call:class_link_list("Errors", package.errors) ?>
43 </ul>
44 <?cs /if ?>
45</div>
46<?cs /if ?>
47
Amanda Kassaye4a8ab12016-03-29 16:11:01 -040048<?cs if:!devsite ?>
Dirk Dougherty0dc81b92015-12-08 14:49:52 -080049<?cs include:"footer.cs" ?>
Dirk Dougherty541b4942014-02-14 18:31:53 -080050<?cs include:"trailer.cs" ?>
Amanda Kassaye4a8ab12016-03-29 16:11:01 -040051<?cs /if ?>
Dirk Dougherty541b4942014-02-14 18:31:53 -080052</body>
53</html>