1 <!DOCTYPE html>
   2 <html>
   3 <head>
   4   <meta http-equiv="content-type" content="text/html;" charset="utf-8">
   5   <style type="text/css">
   6 table {
   7   border-collapse: collapse;
   8 }
   9 table, th ,td {
  10   border: 0px solid black;
  11 }
  12 thead th {
  13   background-color: #DDD;
  14 }
  15 tbody > tr:nth-child(even) {
  16     background-color: #EEE
  17 }
  18 tbody > tr:nth-child(odd) {
  19     background-color: #FFF
  20 }
  21 th, td {
  22   font-family: sans-serif; /* could eventually be DejaVu */
  23   font-size: small;
  24   padding: 5px 10px;
  25   vertical-align:top;
  26 }
  27 td a {
  28   text-decoration: none;
  29 }
  30 tr th {
  31   text-align:left;
  32 }
  33 caption {
  34   font-size: smaller;
  35   font-weight: bold;
  36 }
  37 </style>
  38 <title>@HEADER_TITLE@</title>
  39 </head>
  40 <body>
  41 
  42 <h1>@HEADER_TITLE@</h1>
  43 
  44 <ul>
  45 <li><a href="api/index.html">API Specification</a></li>
  46 <li>Java Language Specification</li>
  47 <li>Java Virtual Machine Specification</li>
  48 </ul>
  49 
  50 <table class="striped">
  51 <caption>Modules</caption>
  52 <thead>
  53 <tr>
  54   <th scope="col">Group</th>
  55   <th scope="col">Java SE</th>
  56   <th scope="col">JDK</th>
  57   <th scope="col">JavaFX</th>
  58 </tr>
  59 </thead>
  60 <tbody>
  61 <tr>
  62   <th scope="row">Core</th>
  63   <td>@CORE_MODULES@</td>
  64 </tr>
  65 <tr>
  66 <th scope="row">Security</th>
  67   <td>@SECURITY_MODULES@</td>
  68 </tr>
  69 <tr>
  70 <th scope="row">Instrumentation and<br>Management</th>
  71   <td>@INSTRUMENT_MGMT_MODULES@</td>
  72 </tr>
  73 <tr>
  74 <th scope="row">Integration</th>
  75   <td>@INTEGRATION_MODULES@</td>
  76 </tr>
  77 <tr>
  78   <th scope="row">UI Toolkits</th>
  79   <td>@UI_TOOLKITS_MODULES@</td>
  80 </tr>
  81 <tr>
  82   <th scope="row">Scripting</th>
  83   <td>@SCRIPTING_MODULES@</td>
  84 </tr>
  85 <tr>
  86   <th scope="row">Tools and Tool APIs</th>
  87   <td>@TOOL_MODULES@</td>
  88 </tr>
  89 <tr>
  90   <th scope="row">Incubating APIs</th>
  91   <td>@INCUBATOR_MODULES@</td>
  92 </tr>
  93 <tr>
  94   <th scope="row">Java EE</th>
  95   <td>@JAVA_EE_MODULES@</td>
  96 </tr>
  97 <tr>
  98   <th scope="row">Deployment</th>
  99   <td>@DEPLOYMENT_MODULES@</td>
 100 </tr>
 101 </tbody>
 102 </table>
 103 <hr/>
 104 <p>
 105 <a href="legal/cpyr.html">Copyright</a>&copy; 1993, 2017, Oracle and/or its affiliates. All rights reserved.</p>
 106 </body>
 107 </html>