smain@google.com | a0a6d32 | 2016-02-05 17:34:22 -0800 | [diff] [blame] | 1 | <?cs # THIS CREATES A LIST OF ALL PACKAGES AND NAMES IT packages.html ?> |
Dirk Dougherty | 541b494 | 2014-02-14 18:31:53 -0800 | [diff] [blame] | 2 | <?cs include:"macros.cs" ?> |
Dirk Dougherty | ff233cc | 2015-05-04 14:37:05 -0700 | [diff] [blame] | 3 | <?cs include:"macros_override.cs" ?> |
smain@google.com | a0a6d32 | 2016-02-05 17:34:22 -0800 | [diff] [blame] | 4 | <?cs include:"doctype.cs" ?> |
Dirk Dougherty | 541b494 | 2014-02-14 18:31:53 -0800 | [diff] [blame] | 5 | <html<?cs if:devsite ?> devsite<?cs /if ?>> |
| 6 | <?cs include:"head_tag.cs" ?> |
smain@google.com | a0a6d32 | 2016-02-05 17:34:22 -0800 | [diff] [blame] | 7 | <?cs include:"body_tag.cs" ?> |
Dirk Dougherty | 541b494 | 2014-02-14 18:31:53 -0800 | [diff] [blame] | 8 | <?cs include:"header.cs" ?> |
| 9 | |
Dirk Dougherty | 541b494 | 2014-02-14 18:31:53 -0800 | [diff] [blame] | 10 | <h1><?cs var:page.title ?></h1> |
smain@google.com | a0a6d32 | 2016-02-05 17:34:22 -0800 | [diff] [blame] | 11 | <p>These are the API classes. See all |
| 12 | <a href="packages.html">API packages</a>.</p> |
Dirk Dougherty | 541b494 | 2014-02-14 18:31:53 -0800 | [diff] [blame] | 13 | |
smain@google.com | a0a6d32 | 2016-02-05 17:34:22 -0800 | [diff] [blame] | 14 | <div class="jd-letterlist"><?cs |
| 15 | each:letter=docs.classes ?> |
| 16 | <a href="#letter_<?cs name:letter ?>"><?cs |
| 17 | name:letter ?></a> <?cs |
| 18 | /each?> |
Dirk Dougherty | 541b494 | 2014-02-14 18:31:53 -0800 | [diff] [blame] | 19 | </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.com | a0a6d32 | 2016-02-05 17:34:22 -0800 | [diff] [blame] | 24 | <table> |
Dirk Dougherty | 541b494 | 2014-02-14 18:31:53 -0800 | [diff] [blame] | 25 | <?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 Dougherty | ff233cc | 2015-05-04 14:37:05 -0700 | [diff] [blame] | 29 | <td class="jd-descrcol" width="100%"> |
| 30 | <?cs call:short_descr(cl) ?> |
| 31 | <?cs call:show_annotations_list(cl) ?> |
| 32 | </td> |
Dirk Dougherty | 541b494 | 2014-02-14 18:31:53 -0800 | [diff] [blame] | 33 | </tr> |
| 34 | <?cs set:count = count + #1 ?> |
| 35 | <?cs /each ?> |
| 36 | </table> |
| 37 | <?cs /each ?> |
| 38 | |
Dirk Dougherty | 0dc81b9 | 2015-12-08 14:49:52 -0800 | [diff] [blame] | 39 | <?cs include:"footer.cs" ?> |
Dirk Dougherty | 541b494 | 2014-02-14 18:31:53 -0800 | [diff] [blame] | 40 | <?cs include:"trailer.cs" ?> |
Dirk Dougherty | 541b494 | 2014-02-14 18:31:53 -0800 | [diff] [blame] | 41 | </body> |
Dirk Dougherty | 0dc81b9 | 2015-12-08 14:49:52 -0800 | [diff] [blame] | 42 | </html> |