blob: 007b57ee43e33af1eb5ee72a2d3ef4b81a3a750b [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" ?>
Jeff Arneson9eefef62014-09-10 17:20:33 -07003<?cs include:"macros_override.cs" ?>
smain@google.com4f3a05a2016-08-31 11:30:02 -07004<?cs include:"doctype.cs" ?>
Scott Maine05e6f92013-01-29 13:34:17 -08005<html<?cs if:devsite ?> devsite<?cs /if ?>>
Scott Maine4d8f1b2012-06-21 18:03:05 -07006<?cs include:"head_tag.cs" ?>
smain@google.com4f3a05a2016-08-31 11:30:02 -07007<?cs include:"body_tag.cs" ?>
Scott Maine4d8f1b2012-06-21 18:03:05 -07008<?cs include:"header.cs" ?>
9
Scott Maine4d8f1b2012-06-21 18:03:05 -070010<h1><?cs var:page.title ?></h1>
smain@google.com4f3a05a2016-08-31 11:30:02 -070011<p>These are the API classes. See all
12<a href="packages.html">API packages</a>.</p>
Scott Maine4d8f1b2012-06-21 18:03:05 -070013
smain@google.com4f3a05a2016-08-31 11:30:02 -070014<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?>
Scott Maine4d8f1b2012-06-21 18:03:05 -070019</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.com4f3a05a2016-08-31 11:30:02 -070024<table>
Scott Maine4d8f1b2012-06-21 18:03:05 -070025 <?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>
Jeff Arneson9eefef62014-09-10 17:20:33 -070029 <td class="jd-descrcol" width="100%">
30 <?cs call:short_descr(cl) ?>&nbsp;
Jeff Arnesonad46e7e2014-09-15 09:53:15 -070031 <?cs call:show_annotations_list(cl) ?>
Jeff Arneson9eefef62014-09-10 17:20:33 -070032 </td>
Scott Maine4d8f1b2012-06-21 18:03:05 -070033 </tr>
34 <?cs set:count = count + #1 ?>
35 <?cs /each ?>
36</table>
37<?cs /each ?>
38
smain@google.com4f3a05a2016-08-31 11:30:02 -070039<?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 ?>
Dirk Doughertyf97b2ef2015-05-12 21:23:05 -070062
smain@google.com4f3a05a2016-08-31 11:30:02 -070063
64<?cs if:!devsite ?>
Dirk Doughertyf97b2ef2015-05-12 21:23:05 -070065<?cs include:"footer.cs" ?>
Scott Maine4d8f1b2012-06-21 18:03:05 -070066<?cs include:"trailer.cs" ?>
smain@google.com4f3a05a2016-08-31 11:30:02 -070067<?cs /if ?>
Scott Maine4d8f1b2012-06-21 18:03:05 -070068</body>
Dirk Doughertyf97b2ef2015-05-12 21:23:05 -070069</html>