blob: 3fcfb8188d8c67e5a8d94771eeb450ca4f48d642 [file] [log] [blame]
smain@google.com4f3a05a2016-08-31 11:30:02 -07001<?cs # THIS CREATES A LIST OF ALL PACKAGES AND NAMES IT packages.html ?>
Scott Maine4d8f1b2012-06-21 18:03:05 -07002<?cs include:"macros.cs" ?>
smain@google.com4f3a05a2016-08-31 11:30:02 -07003<?cs include:"doctype.cs" ?>
Scott Maine05e6f92013-01-29 13:34:17 -08004<html<?cs if:devsite ?> devsite<?cs /if ?>>
Scott Maine4d8f1b2012-06-21 18:03:05 -07005<?cs include:"head_tag.cs" ?>
smain@google.com4f3a05a2016-08-31 11:30:02 -07006<?cs include:"body_tag.cs" ?>
Scott Maine4d8f1b2012-06-21 18:03:05 -07007<?cs include:"header.cs" ?>
8
Scott Maine4d8f1b2012-06-21 18:03:05 -07009<h1><?cs var:page.title ?></h1>
smain@google.com4f3a05a2016-08-31 11:30:02 -070010<p>These are the API packages.
11See all <a href="classes.html">API classes</a>.</p>
Scott Maine4d8f1b2012-06-21 18:03:05 -070012
13<?cs set:count = #1 ?>
smain@google.com4f3a05a2016-08-31 11:30:02 -070014<table>
Scott Maine4d8f1b2012-06-21 18:03:05 -070015<?cs each:pkg = docs.packages ?>
smain@google.com4f3a05a2016-08-31 11:30:02 -070016 <tr class="api apilevel-<?cs var:pkg.since ?>" >
Scott Maine4d8f1b2012-06-21 18:03:05 -070017 <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
smain@google.com4f3a05a2016-08-31 11:30:02 -070024<?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 ?>
Dirk Doughertyf97b2ef2015-05-12 21:23:05 -070047
smain@google.com4f3a05a2016-08-31 11:30:02 -070048<?cs if:!devsite ?>
Dirk Doughertyf97b2ef2015-05-12 21:23:05 -070049<?cs include:"footer.cs" ?>
Scott Maine4d8f1b2012-06-21 18:03:05 -070050<?cs include:"trailer.cs" ?>
smain@google.com4f3a05a2016-08-31 11:30:02 -070051<?cs /if ?>
Scott Maine4d8f1b2012-06-21 18:03:05 -070052</body>
53</html>