blob: 005ed6a661957528afd89a824f8c028d020b3e85 [file] [log] [blame]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001<?cs include:"macros.cs" ?>
2<html>
3<?cs include:"head_tag.cs" ?>
4<body>
5<script type="text/javascript">
6function toggle_inherited(base) {
7 var list = document.getElementById(base + "-list");
8 var summary = document.getElementById(base + "-summary");
9 var trigger = document.getElementById(base + "-trigger");
10 if (list.style.display == "none") {
11 list.style.display = "block";
12 summary.style.display = "none";
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080013 trigger.src = "<?cs var:toroot ?>assets/images/triangle-closed.png";
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070014 } else {
15 list.style.display = "none";
16 summary.style.display = "block";
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080017 trigger.src = "<?cs var:toroot ?>assets/images/triangle-opened.png";
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070018 }
19}
20</script>
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080021
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070022<?cs include:"header.cs" ?>
23
24<div class="g-unit" id="doc-content">
25
The Android Open Source Projected187412009-01-20 14:03:55 -080026<div id="api-info-block">
27
28<?cs # are there inherited members ?>
29<?cs each:cl=class.inherited ?>
30 <?cs if:subcount(cl.methods) ?>
31 <?cs set:inhmethods = #1 ?>
32 <?cs /if ?>
33 <?cs if:subcount(cl.constants) ?>
34 <?cs set:inhconstants = #1 ?>
35 <?cs /if ?>
36 <?cs if:subcount(cl.fields) ?>
37 <?cs set:inhfields = #1 ?>
38 <?cs /if ?>
39 <?cs if:subcount(cl.attrs) ?>
40 <?cs set:inhattrs = #1 ?>
41 <?cs /if ?>
42<?cs /each ?>
43
44<div class="sum-details-links">
45Summary:
46<?cs if:subcount(class.inners) ?>
47 <a href="#nestedclasses">Nested Classes</a>
48 <?cs set:linkcount = #1 ?>
49<?cs /if ?>
50<?cs if:subcount(class.attrs) ?>
51 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#lattrs">XML Attrs</a>
52 <?cs set:linkcount = #1 ?>
53<?cs /if ?>
54<?cs if:inhattrs ?>
55 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhattrs">Inherited XML Attrs</a>
56 <?cs set:linkcount = #1 ?>
57<?cs /if ?>
58<?cs if:subcount(class.enumConstants) ?>
59 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#enumconstants">Enums</a>
60 <?cs set:linkcount = #1 ?>
61<?cs /if ?>
62<?cs if:subcount(class.constants) ?>
63 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#constants">Constants</a>
64 <?cs set:linkcount = #1 ?>
65<?cs /if ?>
66<?cs if:inhconstants ?>
67 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhconstants">Inherited Constants</a>
68 <?cs set:linkcount = #1 ?>
69<?cs /if ?>
70<?cs if:subcount(class.fields) ?>
71 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#lfields">Fields</a>
72 <?cs set:linkcount = #1 ?>
73<?cs /if ?>
74<?cs if:inhfields ?>
75 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhfields">Inherited Fields</a>
76 <?cs set:linkcount = #1 ?>
77<?cs /if ?>
78<?cs if:subcount(class.ctors.public) ?>
79 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#pubctors">Ctors</a>
80 <?cs set:linkcount = #1 ?>
81<?cs /if ?>
82<?cs if:subcount(class.ctors.protected) ?>
83 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#proctors">Protected Ctors</a>
84 <?cs set:linkcount = #1 ?>
85<?cs /if ?>
86<?cs if:subcount(class.methods.public) ?>
87 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#pubmethods">Methods</a>
88 <?cs set:linkcount = #1 ?>
89<?cs /if ?>
90<?cs if:subcount(class.methods.protected) ?>
91 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#promethods">Protected Methods</a>
92 <?cs set:linkcount = #1 ?>
93<?cs /if ?>
94<?cs if:inhmethods ?>
95 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhmethods">Inherited Methods</a>
96<?cs /if ?>
97</nobr>
98<?cs if:inhattrs || inhconstants || inhfields || inhmethods || subcount(class.subclasses.direct) || subcount(class.subclasses.indirect) ?>
99&#124; [<a href="">Expand All</a>]
100<?cs /if ?>
101</div>
102</div>
103
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700104<?cs # this next line must be exactly like this to be parsed by eclipse ?>
105<!-- ======== START OF CLASS DATA ======== -->
106
107<div id="jd-header">
108 <?cs var:class.scope ?>
109 <?cs var:class.static ?>
110 <?cs var:class.final ?>
111 <?cs var:class.abstract ?>
112 <?cs var:class.kind ?>
113<h1><?cs var:class.name ?></h1>
114
115<?cs set:colspan = subcount(class.inheritance) ?>
116<?cs each:supr = class.inheritance ?>
117 <?cs if:colspan == 2 ?>
118 extends <?cs call:type_link(supr.short_class) ?><br/>
119 <?cs /if ?>
120 <?cs if:last(supr) && subcount(supr.interfaces) ?>
121 implements
122 <?cs each:t=supr.interfaces ?>
123 <?cs call:type_link(t) ?>
124 <?cs /each ?>
125 <?cs /if ?>
126 <?cs set:colspan = colspan-1 ?>
127<?cs /each ?>
128
129</div><!-- end header -->
130
131
132<div id="jd-content">
133<table class="jd-inheritance-table">
134<?cs set:colspan = subcount(class.inheritance) ?>
135<?cs each:supr = class.inheritance ?>
136 <tr>
137 <?cs loop:i = 1, (subcount(class.inheritance)-colspan), 1 ?>
138 <td class="jd-inheritance-space">&nbsp;<?cs if:(subcount(class.inheritance)-colspan) == i ?>&nbsp;&nbsp;&#x21b3;<?cs /if ?></td>
The Android Open Source Projected187412009-01-20 14:03:55 -0800139 <?cs /loop ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700140 <td colspan="<?cs var:colspan ?>" class="jd-inheritance-class-cell"><?cs
141 if:colspan == 1
142 ?><?cs call:class_name(class.qualifiedType) ?><?cs
143 else
144 ?><?cs call:type_link(supr.class) ?><?cs
145 /if ?></td>
146 </tr>
147 <?cs set:colspan = colspan-1 ?>
148<?cs /each ?>
149</table>
150
The Android Open Source Projected187412009-01-20 14:03:55 -0800151<?cs # this next line must be exactly like this to be parsed by eclipse ?>
152<!-- ======== NESTED CLASS SUMMARY ======== -->
153<?cs if:subcount(class.subclasses.direct) ?>
154<table class="jd-sumtable jd-sumtable-subclasses"><tr><td colspan="12" style="border:none;margin:0;padding:0;">
155<?cs call:expando_trigger("subclasses-direct", "closed") ?>Known Direct Subclasses
156<?cs call:expandable_class_list("subclasses-direct", class.subclasses.direct, "list") ?>
157</td></tr></table>
158<?cs /if ?>
159
160<?cs if:subcount(class.subclasses.indirect) ?>
161<table class="jd-sumtable jd-sumtable-subclasses"><tr><td colspan="12" style="border:none;margin:0;padding:0;">
162<?cs call:expando_trigger("subclasses-indirect", "closed") ?>Known Indirect Subclasses
163<?cs call:expandable_class_list("subclasses-indirect", class.subclasses.indirect, "list") ?>
164</td></tr></table>
165<?cs /if ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700166
167<div class="jd-descr">
168<?cs call:deprecated_warning(class) ?>
169<?cs if:subcount(class.descr) ?>
170<h2>Class Overview</h2>
171<p><?cs call:tag_list(class.descr) ?></p>
172<?cs /if ?>
173
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700174<?cs call:see_also_tags(class.seeAlso) ?>
175
176</div><!-- jd-descr -->
177
178
The Android Open Source Projected187412009-01-20 14:03:55 -0800179<?cs # summary macros ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700180
181<?cs def:write_method_summary(methods) ?>
182<?cs set:count = #1 ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700183<?cs each:method = methods ?>
184 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
185 <td class="jd-typecol"><nobr>
186 <?cs var:method.abstract ?>
187 <?cs var:method.synchronized ?>
188 <?cs var:method.final ?>
189 <?cs var:method.static ?>
190 <?cs call:type_link(method.generic) ?>
191 <?cs call:type_link(method.returnType) ?></nobr>
192 </td>
The Android Open Source Projected187412009-01-20 14:03:55 -0800193 <td class="jd-linkcol" width="100%"><nobr>
194 <span class="sympad"><a href="<?cs var:toroot ?><?cs var:method.href ?>">
195 <?cs var:method.name ?></a></span>(<?cs call:parameter_list(method.params) ?>)</nobr>
196 <?cs if:subcount(method.shortDescr) || subcount(method.deprecated) ?>
197 <div class="jd-descrdiv"><?cs call:short_descr(method) ?></div>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700198 <?cs /if ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800199 </td></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700200<?cs set:count = count + #1 ?>
201<?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700202<?cs /def ?>
203
204<?cs def:write_field_summary(fields) ?>
205<?cs set:count = #1 ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700206 <?cs each:field=fields ?>
207 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
The Android Open Source Projected187412009-01-20 14:03:55 -0800208 <td class="jd-typecol"><nobr>
209 <?cs var:field.scope ?>
210 <?cs var:field.static ?>
211 <?cs var:field.final ?>
212 <?cs call:type_link(field.type) ?></nobr></td>
213 <td class="jd-linkcol"><a href="<?cs var:toroot ?><?cs var:field.href ?>"><?cs var:field.name ?></a></td>
214 <td class="jd-descrcol" width="100%"><?cs call:short_descr(field) ?></td>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700215 </tr>
216 <?cs set:count = count + #1 ?>
217 <?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700218<?cs /def ?>
219
220<?cs def:write_constant_summary(fields) ?>
221<?cs set:count = #1 ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700222 <?cs each:field=fields ?>
223 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
The Android Open Source Projected187412009-01-20 14:03:55 -0800224 <td class="jd-typecol"><?cs call:type_link(field.type) ?></td>
225 <td class="jd-linkcol"><a href="<?cs var:toroot ?><?cs var:field.href ?>"><?cs var:field.name ?></a></td>
226 <td class="jd-descrcol" width="100%"><?cs call:short_descr(field) ?></td>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700227 </tr>
228 <?cs set:count = count + #1 ?>
229 <?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700230<?cs /def ?>
231
232<?cs def:write_attr_summary(attrs) ?>
233<?cs set:count = #1 ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700234 <tr>
The Android Open Source Projected187412009-01-20 14:03:55 -0800235 <td><nobr><em>Attribute Name</em></nobr></td>
236 <td><nobr><em>Related Method</em></nobr></td>
237 <td><nobr><em>Description</em></nobr></td>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700238 </tr>
239 <?cs each:attr=attrs ?>
240 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
241 <td class="jd-linkcol"><a href="<?cs var:toroot ?><?cs var:attr.href ?>"><?cs var:attr.name ?></a></td>
The Android Open Source Projected187412009-01-20 14:03:55 -0800242 <td class="jd-linkcol"><?cs each:m=attr.methods ?>
243 <a href="<?cs var:toroot ?><?cs var:m.href ?>"><?cs var:m.name ?></a>
244 <?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700245 </td>
246 <td class="jd-descrcol" width="100%"><?cs call:short_descr(attr) ?>&nbsp;</td>
247 </tr>
248 <?cs set:count = count + #1 ?>
249 <?cs /each ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800250<?cs /def ?>
251
252<?cs def:write_inners_summary(classes) ?>
253<?cs set:count = #1 ?>
254 <?cs each:cl=class.inners ?>
255 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
256 <td class="jd-typecol"><nobr>
257 <?cs var:class.scope ?>
258 <?cs var:class.static ?>
259 <?cs var:class.final ?>
260 <?cs var:class.abstract ?>
261 <?cs var:class.kind ?></nobr></td>
262 <td class="jd-linkcol"><?cs call:type_link(cl.type) ?></td>
263 <td class="jd-descrcol" width="100%"><?cs call:short_descr(cl) ?>&nbsp;</td>
264 </tr>
265 <?cs set:count = count + #1 ?>
266 <?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700267<?cs /def ?>
268
269<?cs # end macros ?>
270
271<div class="jd-descr">
272<h2>Summary</h2>
273
The Android Open Source Projected187412009-01-20 14:03:55 -0800274<?cs if:subcount(class.inners) ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700275<?cs # this next line must be exactly like this to be parsed by eclipse ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800276<!-- ======== NESTED CLASS SUMMARY ======== -->
277<table id="nestedclasses" class="jd-sumtable"><tr><th colspan="12">Nested Classes</th></tr>
278<?cs call:write_inners_summary(class.inners) ?>
279<?cs /if ?>
280
281<?cs # this next line must be exactly like this to be parsed by eclipse ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700282<?cs if:subcount(class.attrs) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800283<!-- =========== FIELD SUMMARY =========== -->
284<table id="lattrs" class="jd-sumtable"><tr><th colspan="12">XML Attributes</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700285<?cs call:write_attr_summary(class.attrs) ?>
286<?cs /if ?>
287
The Android Open Source Projected187412009-01-20 14:03:55 -0800288<?cs # if there are inherited attrs, write the table ?>
289<?cs if:inhattrs ?>
290<table id="inhattrs" class="jd-sumtable"><tr><th>
291 <div class="expandall">[<a href="">Expand All</a>]</div>
292 <div style="clear:left;">Inherited XML Attributes</div></th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700293<?cs each:cl=class.inherited ?>
294<?cs if:subcount(cl.attrs) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800295<tr><td colspan="12">
296<?cs call:expando_trigger("inherited-attrs-"+cl.qualified, "closed") ?>From <?cs var:cl.kind ?>
297<a href="<?cs var:toroot ?><?cs var:cl.link ?>"><?cs var:cl.qualified ?></a>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700298<div id="inherited-attrs-<?cs var:cl.qualified ?>">
299 <div id="inherited-attrs-<?cs var:cl.qualified ?>-list"
The Android Open Source Projected187412009-01-20 14:03:55 -0800300 class="jd-inheritedlinks">
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700301 </div>
The Android Open Source Projected187412009-01-20 14:03:55 -0800302 <div id="inherited-attrs-<?cs var:cl.qualified ?>-summary" style="display: none;">
303 <table class="jd-sumtable-expando">
304 <?cs call:write_attr_summary(cl.attrs) ?></table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700305 </div>
306</div>
The Android Open Source Projected187412009-01-20 14:03:55 -0800307</td></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700308<?cs /if ?>
309<?cs /each ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800310</table>
311<?cs /if ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700312
313<?cs if:subcount(class.enumConstants) ?>
314<?cs # this next line must be exactly like this to be parsed by eclipse ?>
315<!-- =========== ENUM CONSTANT SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800316<table id="enumconstants" class="jd-sumtable"><tr><th colspan="12">Enum Values</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700317<?cs set:count = #1 ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700318 <?cs each:field=class.enumConstants ?>
319 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
320 <td class="jd-descrcol"><?cs call:type_link(field.type) ?>&nbsp;</td>
321 <td class="jd-linkcol"><a href="<?cs var:toroot ?><?cs var:field.href ?>"><?cs var:field.name ?></a>&nbsp;</td>
322 <td class="jd-descrcol" width="100%"><?cs call:short_descr(field) ?>&nbsp;</td>
323 </tr>
324 <?cs set:count = count + #1 ?>
325 <?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700326<?cs /if ?>
327
328<?cs if:subcount(class.constants) ?>
329<?cs # this next line must be exactly like this to be parsed by eclipse ?>
330<!-- =========== FIELD SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800331<table id="constants" class="jd-sumtable"><tr><th colspan="12">Constants</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700332<?cs call:write_constant_summary(class.constants) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800333</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700334<?cs /if ?>
335
The Android Open Source Projected187412009-01-20 14:03:55 -0800336<?cs # if there are inherited constants, write the table ?>
337<?cs if:inhconstants ?>
338<table id="inhconstants" class="jd-sumtable"><tr><th>
339 <div class="expandall">[<a href="">Expand All</a>]</div>
340 <div style="clear:left;">Inherited Constants</div></th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700341<?cs each:cl=class.inherited ?>
342<?cs if:subcount(cl.constants) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800343<tr><td colspan="12">
344<?cs call:expando_trigger("inherited-constants-"+cl.qualified, "closed") ?>From <?cs var:cl.kind ?>
345<a href="<?cs var:toroot ?><?cs var:cl.link ?>"><?cs var:cl.qualified ?></a>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700346<div id="inherited-constants-<?cs var:cl.qualified ?>">
The Android Open Source Projected187412009-01-20 14:03:55 -0800347 <div id="inherited-constants-<?cs var:cl.qualified ?>-list"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700348 class="jd-inheritedlinks">
The Android Open Source Projected187412009-01-20 14:03:55 -0800349 </div>
350 <div id="inherited-constants-<?cs var:cl.qualified ?>-summary" style="display: none;">
351 <table class="jd-sumtable-expando">
352 <?cs call:write_constant_summary(cl.constants) ?></table>
353 </div>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700354</div>
The Android Open Source Projected187412009-01-20 14:03:55 -0800355</td></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700356<?cs /if ?>
357<?cs /each ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800358</table>
359<?cs /if ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700360
361<?cs if:subcount(class.fields) ?>
362<?cs # this next line must be exactly like this to be parsed by eclipse ?>
363<!-- =========== FIELD SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800364<table id="lfields" class="jd-sumtable"><tr><th colspan="12">Fields</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700365<?cs call:write_field_summary(class.fields) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800366</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700367<?cs /if ?>
368
The Android Open Source Projected187412009-01-20 14:03:55 -0800369<?cs # if there are inherited fields, write the table ?>
370<?cs if:inhfields ?>
371<table id="inhfields" class="jd-sumtable"><tr><th>
372 <div class="expandall">[<a href="">Expand All</a>]</div>
373 <div style="clear:left;">Inherited Fields</div></th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700374<?cs each:cl=class.inherited ?>
375<?cs if:subcount(cl.fields) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800376<tr><td colspan="12">
377<?cs call:expando_trigger("inherited-fields-"+cl.qualified, "closed") ?>From <?cs var:cl.kind ?>
378<a href="<?cs var:toroot ?><?cs var:cl.link ?>"><?cs var:cl.qualified ?></a>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700379<div id="inherited-fields-<?cs var:cl.qualified ?>">
The Android Open Source Projected187412009-01-20 14:03:55 -0800380 <div id="inherited-fields-<?cs var:cl.qualified ?>-list"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700381 class="jd-inheritedlinks">
The Android Open Source Projected187412009-01-20 14:03:55 -0800382 </div>
383 <div id="inherited-fields-<?cs var:cl.qualified ?>-summary" style="display: none;">
384 <table class="jd-sumtable-expando">
385 <?cs call:write_field_summary(cl.fields) ?></table>
386 </div>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700387</div>
The Android Open Source Projected187412009-01-20 14:03:55 -0800388</td></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700389<?cs /if ?>
390<?cs /each ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800391</table>
392<?cs /if ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700393
394<?cs if:subcount(class.ctors.public) ?>
395<?cs # this next line must be exactly like this to be parsed by eclipse ?>
396<!-- ======== CONSTRUCTOR SUMMARY ======== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800397<table id="pubctors" class="jd-sumtable"><tr><th colspan="12">Public Constructors</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700398<?cs call:write_method_summary(class.ctors.public) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800399</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700400<?cs /if ?>
401
402<?cs if:subcount(class.ctors.protected) ?>
403<?cs # this next line must be exactly like this to be parsed by eclipse ?>
404<!-- ======== CONSTRUCTOR SUMMARY ======== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800405<table id="proctors" class="jd-sumtable"><tr><th colspan="12">Protected Constructors</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700406<?cs call:write_method_summary(class.ctors.protected) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800407</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700408<?cs /if ?>
409
410<?cs if:subcount(class.methods.public) ?>
411<?cs # this next line must be exactly like this to be parsed by eclipse ?>
412<!-- ========== METHOD SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800413<table id="pubmethods" class="jd-sumtable"><tr><th colspan="12">Public Methods</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700414<?cs call:write_method_summary(class.methods.public) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800415</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700416<?cs /if ?>
417
418<?cs if:subcount(class.methods.protected) ?>
419<?cs # this next line must be exactly like this to be parsed by eclipse ?>
420<!-- ========== METHOD SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800421<table id="promethods" class="jd-sumtable"><tr><th colspan="12">Protected Methods</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700422<?cs call:write_method_summary(class.methods.protected) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800423</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700424<?cs /if ?>
425
The Android Open Source Projected187412009-01-20 14:03:55 -0800426<?cs # if there are inherited methods, write the table ?>
427<?cs if:inhmethods ?>
428<table id="inhmethods" class="jd-sumtable"><tr><th>
429 <div class="expandall">[<a href="">Expand All</a>]</div>
430 <div style="clear:left;">Inherited Methods</div></th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700431<?cs each:cl=class.inherited ?>
432<?cs if:subcount(cl.methods) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800433<tr><td colspan="12"><?cs call:expando_trigger("inherited-methods-"+cl.qualified, "closed") ?>
434From <?cs var:cl.kind ?> <a href="<?cs var:toroot ?><?cs var:cl.link ?>"><?cs var:cl.qualified ?></a>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700435<div id="inherited-methods-<?cs var:cl.qualified ?>">
The Android Open Source Projected187412009-01-20 14:03:55 -0800436 <div id="inherited-methods-<?cs var:cl.qualified ?>-list"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700437 class="jd-inheritedlinks">
The Android Open Source Projected187412009-01-20 14:03:55 -0800438 </div>
439 <div id="inherited-methods-<?cs var:cl.qualified ?>-summary" style="display: none;">
440 <table class="jd-sumtable-expando">
441 <?cs call:write_method_summary(cl.methods) ?></table>
442 </div>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700443</div>
The Android Open Source Projected187412009-01-20 14:03:55 -0800444</td></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700445<?cs /if ?>
446<?cs /each ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800447</table>
448<?cs /if ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700449
450</div><!-- jd-descr (summary) -->
451
452<!-- Details -->
453
454<?cs def:write_field_details(fields) ?>
455<?cs each:field=fields ?>
456<?cs # this next line must be exactly like this to be parsed by eclipse ?>
457<div class="jd-details" id="<?cs var:field.anchor ?>">
458 <h4 class="jd-details-title">
459 <span class="normal">
460 <?cs var:field.scope ?>
461 <?cs var:field.static ?>
462 <?cs var:field.final ?>
463 <?cs call:type_link(field.type) ?>
464 </span>
465 <?cs var:field.name ?>
466 </h4>
467 <div class="jd-details-descr"><?cs call:description(field) ?>
468 <?cs if:subcount(field.constantValue) ?>
469 <div class="jd-tagdata">
470 <span class="jd-tagtitle">Constant Value: </span>
471 <span>
472 <?cs if:field.constantValue.isString ?>
473 <?cs var:field.constantValue.str ?>
474 <?cs else ?>
475 <?cs var:field.constantValue.dec ?>
476 (<?cs var:field.constantValue.hex ?>)
477 <?cs /if ?>
478 </span>
479 </div>
480 <?cs /if ?>
481 </div>
482</div>
483<?cs /each ?>
484<?cs /def ?>
485
486<?cs def:write_method_details(methods) ?>
487<?cs each:method=methods ?>
488<?cs # this next line must be exactly like this to be parsed by eclipse ?>
489<div class="jd-details" id="<?cs var:method.anchor ?>">
490 <h4 class="jd-details-title">
491 <span class="normal">
492 <?cs var:method.scope ?>
493 <?cs var:method.static ?>
494 <?cs var:method.final ?>
495 <?cs var:method.abstract ?>
496 <?cs var:method.synchronized ?>
497 <?cs call:type_link(method.returnType) ?>
498 </span>
The Android Open Source Projected187412009-01-20 14:03:55 -0800499 <span class="sympad"><?cs var:method.name ?></span>
500 <span class="normal">(<?cs call:parameter_list(method.params) ?>)</span>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700501 </h4>
502 <div class="jd-details-descr"><?cs call:description(method) ?></div>
503</div>
504<?cs /each ?>
505<?cs /def ?>
506
507<?cs def:write_attr_details(attrs) ?>
508<?cs each:attr=attrs ?>
509<?cs # this next line must be exactly like this to be parsed by eclipse ?>
510<div class="jd-details" id="<?cs var:attr.anchor ?>">
511 <h4 class="jd-details-title"><?cs var:attr.name ?></h4>
512 <div class="jd-details-descr">
513 <?cs call:description(attr) ?>
514
515 <div class="jd-tagdata">
516 <h5 class="jd-tagtitle">Related Methods</h5>
517 <ul class="nolist">
518 <?cs each:m=attr.methods ?>
519 <li><a href="<?cs var:toroot ?><?cs var:m.href ?>"><?cs var:m.name ?></a></li>
520 <?cs /each ?>
521 </ul>
522 </div>
523 </div>
524</div>
525<?cs /each ?>
526<?cs /def ?>
527
528
529<!-- XML Attributes -->
530<?cs if:subcount(class.attrs) ?>
531<h2>XML Attributes</h2>
532<?cs call:write_attr_details(class.attrs) ?>
533<?cs /if ?>
534
535<!-- Enum Values -->
536<?cs if:subcount(class.enumConstants) ?>
537<h2>Enum Values</h2>
538<?cs call:write_field_details(class.enumConstants) ?>
539<?cs /if ?>
540
541<!-- Constants -->
542<?cs if:subcount(class.constants) ?>
543<h2>Constants</h2>
544<?cs call:write_field_details(class.constants) ?>
545<?cs /if ?>
546
547<!-- Fields -->
548<?cs if:subcount(class.fields) ?>
549<h2>Fields</h2>
550<?cs call:write_field_details(class.fields) ?>
551<?cs /if ?>
552
553<!-- Public ctors -->
554<?cs if:subcount(class.ctors.public) ?>
555<h2>Public Constructors</h2>
556<?cs call:write_method_details(class.ctors.public) ?>
557<?cs /if ?>
558
559<?cs # this next line must be exactly like this to be parsed by eclipse ?>
560<!-- ========= CONSTRUCTOR DETAIL ======== -->
561<!-- Protected ctors -->
562<?cs if:subcount(class.ctors.protected) ?>
563<h2>Protected Constructors</h2>
564<?cs call:write_method_details(class.ctors.protected) ?>
565<?cs /if ?>
566
567<?cs # this next line must be exactly like this to be parsed by eclipse ?>
568<!-- ========= CONSTRUCTOR DETAIL ======== -->
569<!-- Public methdos -->
570<?cs if:subcount(class.methods.public) ?>
571<h2>Public Methods</h2>
572<?cs call:write_method_details(class.methods.public) ?>
573<?cs /if ?>
574
575<?cs # this next line must be exactly like this to be parsed by eclipse ?>
576<!-- ========= METHOD DETAIL ======== -->
577<?cs if:subcount(class.methods.protected) ?>
578<h2>Protected Methods</h2>
579<?cs call:write_method_details(class.methods.protected) ?>
580<?cs /if ?>
581
582<?cs # this next line must be exactly like this to be parsed by eclipse ?>
583<!-- ========= END OF CLASS DATA ========= -->
584
585<?cs include:"footer.cs" ?>
586</div> <!-- jd-content -->
587
588</div><!-- end doc-content -->
589<?cs include:"analytics.cs" ?>
590</body>
591</html>