blob: 10778860c40e188ce1cda96d24a98a595c94d754 [file] [log] [blame]
The Android Open Source Project475fa122009-02-10 15:43:57 -08001<?cs include:"doctype.cs" ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07002<?cs include:"macros.cs" ?>
3<html>
4<?cs include:"head_tag.cs" ?>
5<body>
6<script type="text/javascript">
The Android Open Source Project475fa122009-02-10 15:43:57 -08007function toggleInherited(linkObj, expand) {
8 var base = linkObj.getAttribute("id");
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07009 var list = document.getElementById(base + "-list");
10 var summary = document.getElementById(base + "-summary");
11 var trigger = document.getElementById(base + "-trigger");
The Android Open Source Project475fa122009-02-10 15:43:57 -080012 var a = $(linkObj);
13 if ( (expand == null && a.hasClass("closed")) || expand ) {
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070014 list.style.display = "none";
15 summary.style.display = "block";
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080016 trigger.src = "<?cs var:toroot ?>assets/images/triangle-opened.png";
The Android Open Source Project475fa122009-02-10 15:43:57 -080017 a.removeClass("closed");
18 a.addClass("opened");
19 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
20 list.style.display = "block";
21 summary.style.display = "none";
22 trigger.src = "<?cs var:toroot ?>assets/images/triangle-closed.png";
23 a.removeClass("opened");
24 a.addClass("closed");
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070025 }
The Android Open Source Project475fa122009-02-10 15:43:57 -080026 return false;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070027}
28</script>
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080029
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070030<?cs include:"header.cs" ?>
31
32<div class="g-unit" id="doc-content">
33
The Android Open Source Projected187412009-01-20 14:03:55 -080034<div id="api-info-block">
35
36<?cs # are there inherited members ?>
37<?cs each:cl=class.inherited ?>
38 <?cs if:subcount(cl.methods) ?>
39 <?cs set:inhmethods = #1 ?>
40 <?cs /if ?>
41 <?cs if:subcount(cl.constants) ?>
42 <?cs set:inhconstants = #1 ?>
43 <?cs /if ?>
44 <?cs if:subcount(cl.fields) ?>
45 <?cs set:inhfields = #1 ?>
46 <?cs /if ?>
47 <?cs if:subcount(cl.attrs) ?>
48 <?cs set:inhattrs = #1 ?>
49 <?cs /if ?>
50<?cs /each ?>
51
52<div class="sum-details-links">
53Summary:
54<?cs if:subcount(class.inners) ?>
55 <a href="#nestedclasses">Nested Classes</a>
56 <?cs set:linkcount = #1 ?>
57<?cs /if ?>
58<?cs if:subcount(class.attrs) ?>
59 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#lattrs">XML Attrs</a>
60 <?cs set:linkcount = #1 ?>
61<?cs /if ?>
62<?cs if:inhattrs ?>
63 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhattrs">Inherited XML Attrs</a>
64 <?cs set:linkcount = #1 ?>
65<?cs /if ?>
66<?cs if:subcount(class.enumConstants) ?>
67 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#enumconstants">Enums</a>
68 <?cs set:linkcount = #1 ?>
69<?cs /if ?>
70<?cs if:subcount(class.constants) ?>
71 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#constants">Constants</a>
72 <?cs set:linkcount = #1 ?>
73<?cs /if ?>
74<?cs if:inhconstants ?>
75 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhconstants">Inherited Constants</a>
76 <?cs set:linkcount = #1 ?>
77<?cs /if ?>
78<?cs if:subcount(class.fields) ?>
79 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#lfields">Fields</a>
80 <?cs set:linkcount = #1 ?>
81<?cs /if ?>
82<?cs if:inhfields ?>
83 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhfields">Inherited Fields</a>
84 <?cs set:linkcount = #1 ?>
85<?cs /if ?>
86<?cs if:subcount(class.ctors.public) ?>
87 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#pubctors">Ctors</a>
88 <?cs set:linkcount = #1 ?>
89<?cs /if ?>
90<?cs if:subcount(class.ctors.protected) ?>
91 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#proctors">Protected Ctors</a>
92 <?cs set:linkcount = #1 ?>
93<?cs /if ?>
94<?cs if:subcount(class.methods.public) ?>
95 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#pubmethods">Methods</a>
96 <?cs set:linkcount = #1 ?>
97<?cs /if ?>
98<?cs if:subcount(class.methods.protected) ?>
99 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#promethods">Protected Methods</a>
100 <?cs set:linkcount = #1 ?>
101<?cs /if ?>
102<?cs if:inhmethods ?>
103 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhmethods">Inherited Methods</a>
104<?cs /if ?>
105</nobr>
106<?cs if:inhattrs || inhconstants || inhfields || inhmethods || subcount(class.subclasses.direct) || subcount(class.subclasses.indirect) ?>
The Android Open Source Project475fa122009-02-10 15:43:57 -0800107&#124; <a href="#" onclick="return toggleAllSummaryInherited(this)">[Expand All]</a>
The Android Open Source Projected187412009-01-20 14:03:55 -0800108<?cs /if ?>
109</div>
110</div>
111
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700112<?cs # this next line must be exactly like this to be parsed by eclipse ?>
113<!-- ======== START OF CLASS DATA ======== -->
114
115<div id="jd-header">
116 <?cs var:class.scope ?>
117 <?cs var:class.static ?>
118 <?cs var:class.final ?>
119 <?cs var:class.abstract ?>
120 <?cs var:class.kind ?>
121<h1><?cs var:class.name ?></h1>
122
123<?cs set:colspan = subcount(class.inheritance) ?>
124<?cs each:supr = class.inheritance ?>
125 <?cs if:colspan == 2 ?>
126 extends <?cs call:type_link(supr.short_class) ?><br/>
127 <?cs /if ?>
128 <?cs if:last(supr) && subcount(supr.interfaces) ?>
129 implements
130 <?cs each:t=supr.interfaces ?>
131 <?cs call:type_link(t) ?>
132 <?cs /each ?>
133 <?cs /if ?>
134 <?cs set:colspan = colspan-1 ?>
135<?cs /each ?>
136
137</div><!-- end header -->
138
139
140<div id="jd-content">
141<table class="jd-inheritance-table">
142<?cs set:colspan = subcount(class.inheritance) ?>
143<?cs each:supr = class.inheritance ?>
144 <tr>
145 <?cs loop:i = 1, (subcount(class.inheritance)-colspan), 1 ?>
146 <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 -0800147 <?cs /loop ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700148 <td colspan="<?cs var:colspan ?>" class="jd-inheritance-class-cell"><?cs
149 if:colspan == 1
150 ?><?cs call:class_name(class.qualifiedType) ?><?cs
151 else
152 ?><?cs call:type_link(supr.class) ?><?cs
153 /if ?></td>
154 </tr>
155 <?cs set:colspan = colspan-1 ?>
156<?cs /each ?>
157</table>
158
The Android Open Source Projected187412009-01-20 14:03:55 -0800159<?cs # this next line must be exactly like this to be parsed by eclipse ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800160
The Android Open Source Projected187412009-01-20 14:03:55 -0800161<?cs if:subcount(class.subclasses.direct) ?>
162<table class="jd-sumtable jd-sumtable-subclasses"><tr><td colspan="12" style="border:none;margin:0;padding:0;">
163<?cs call:expando_trigger("subclasses-direct", "closed") ?>Known Direct Subclasses
164<?cs call:expandable_class_list("subclasses-direct", class.subclasses.direct, "list") ?>
165</td></tr></table>
166<?cs /if ?>
167
168<?cs if:subcount(class.subclasses.indirect) ?>
169<table class="jd-sumtable jd-sumtable-subclasses"><tr><td colspan="12" style="border:none;margin:0;padding:0;">
170<?cs call:expando_trigger("subclasses-indirect", "closed") ?>Known Indirect Subclasses
171<?cs call:expandable_class_list("subclasses-indirect", class.subclasses.indirect, "list") ?>
172</td></tr></table>
173<?cs /if ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700174
175<div class="jd-descr">
176<?cs call:deprecated_warning(class) ?>
177<?cs if:subcount(class.descr) ?>
178<h2>Class Overview</h2>
179<p><?cs call:tag_list(class.descr) ?></p>
180<?cs /if ?>
181
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700182<?cs call:see_also_tags(class.seeAlso) ?>
183
184</div><!-- jd-descr -->
185
186
The Android Open Source Projected187412009-01-20 14:03:55 -0800187<?cs # summary macros ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700188
189<?cs def:write_method_summary(methods) ?>
190<?cs set:count = #1 ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700191<?cs each:method = methods ?>
192 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
193 <td class="jd-typecol"><nobr>
194 <?cs var:method.abstract ?>
195 <?cs var:method.synchronized ?>
196 <?cs var:method.final ?>
197 <?cs var:method.static ?>
198 <?cs call:type_link(method.generic) ?>
199 <?cs call:type_link(method.returnType) ?></nobr>
200 </td>
The Android Open Source Projected187412009-01-20 14:03:55 -0800201 <td class="jd-linkcol" width="100%"><nobr>
202 <span class="sympad"><a href="<?cs var:toroot ?><?cs var:method.href ?>">
203 <?cs var:method.name ?></a></span>(<?cs call:parameter_list(method.params) ?>)</nobr>
204 <?cs if:subcount(method.shortDescr) || subcount(method.deprecated) ?>
205 <div class="jd-descrdiv"><?cs call:short_descr(method) ?></div>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700206 <?cs /if ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800207 </td></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700208<?cs set:count = count + #1 ?>
209<?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700210<?cs /def ?>
211
212<?cs def:write_field_summary(fields) ?>
213<?cs set:count = #1 ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700214 <?cs each:field=fields ?>
215 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
The Android Open Source Projected187412009-01-20 14:03:55 -0800216 <td class="jd-typecol"><nobr>
217 <?cs var:field.scope ?>
218 <?cs var:field.static ?>
219 <?cs var:field.final ?>
220 <?cs call:type_link(field.type) ?></nobr></td>
221 <td class="jd-linkcol"><a href="<?cs var:toroot ?><?cs var:field.href ?>"><?cs var:field.name ?></a></td>
222 <td class="jd-descrcol" width="100%"><?cs call:short_descr(field) ?></td>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700223 </tr>
224 <?cs set:count = count + #1 ?>
225 <?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700226<?cs /def ?>
227
228<?cs def:write_constant_summary(fields) ?>
229<?cs set:count = #1 ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700230 <?cs each:field=fields ?>
231 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
The Android Open Source Projected187412009-01-20 14:03:55 -0800232 <td class="jd-typecol"><?cs call:type_link(field.type) ?></td>
233 <td class="jd-linkcol"><a href="<?cs var:toroot ?><?cs var:field.href ?>"><?cs var:field.name ?></a></td>
234 <td class="jd-descrcol" width="100%"><?cs call:short_descr(field) ?></td>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700235 </tr>
236 <?cs set:count = count + #1 ?>
237 <?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700238<?cs /def ?>
239
240<?cs def:write_attr_summary(attrs) ?>
241<?cs set:count = #1 ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700242 <tr>
The Android Open Source Projected187412009-01-20 14:03:55 -0800243 <td><nobr><em>Attribute Name</em></nobr></td>
244 <td><nobr><em>Related Method</em></nobr></td>
245 <td><nobr><em>Description</em></nobr></td>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700246 </tr>
247 <?cs each:attr=attrs ?>
248 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
249 <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 -0800250 <td class="jd-linkcol"><?cs each:m=attr.methods ?>
251 <a href="<?cs var:toroot ?><?cs var:m.href ?>"><?cs var:m.name ?></a>
252 <?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700253 </td>
254 <td class="jd-descrcol" width="100%"><?cs call:short_descr(attr) ?>&nbsp;</td>
255 </tr>
256 <?cs set:count = count + #1 ?>
257 <?cs /each ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800258<?cs /def ?>
259
260<?cs def:write_inners_summary(classes) ?>
261<?cs set:count = #1 ?>
262 <?cs each:cl=class.inners ?>
263 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
264 <td class="jd-typecol"><nobr>
265 <?cs var:class.scope ?>
266 <?cs var:class.static ?>
267 <?cs var:class.final ?>
268 <?cs var:class.abstract ?>
269 <?cs var:class.kind ?></nobr></td>
270 <td class="jd-linkcol"><?cs call:type_link(cl.type) ?></td>
271 <td class="jd-descrcol" width="100%"><?cs call:short_descr(cl) ?>&nbsp;</td>
272 </tr>
273 <?cs set:count = count + #1 ?>
274 <?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700275<?cs /def ?>
276
277<?cs # end macros ?>
278
279<div class="jd-descr">
280<h2>Summary</h2>
281
The Android Open Source Projected187412009-01-20 14:03:55 -0800282<?cs if:subcount(class.inners) ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700283<?cs # this next line must be exactly like this to be parsed by eclipse ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800284<!-- ======== NESTED CLASS SUMMARY ======== -->
285<table id="nestedclasses" class="jd-sumtable"><tr><th colspan="12">Nested Classes</th></tr>
286<?cs call:write_inners_summary(class.inners) ?>
287<?cs /if ?>
288
289<?cs # this next line must be exactly like this to be parsed by eclipse ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700290<?cs if:subcount(class.attrs) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800291<!-- =========== FIELD SUMMARY =========== -->
292<table id="lattrs" class="jd-sumtable"><tr><th colspan="12">XML Attributes</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700293<?cs call:write_attr_summary(class.attrs) ?>
294<?cs /if ?>
295
The Android Open Source Projected187412009-01-20 14:03:55 -0800296<?cs # if there are inherited attrs, write the table ?>
297<?cs if:inhattrs ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800298<?cs # this next line must be exactly like this to be parsed by eclipse ?>
299<!-- =========== FIELD SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800300<table id="inhattrs" class="jd-sumtable"><tr><th>
The Android Open Source Project475fa122009-02-10 15:43:57 -0800301 <a href="#" class="toggle-all" onclick="return toggleAllInherited(this, null)">[Expand]</a>
The Android Open Source Projected187412009-01-20 14:03:55 -0800302 <div style="clear:left;">Inherited XML Attributes</div></th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700303<?cs each:cl=class.inherited ?>
304<?cs if:subcount(cl.attrs) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800305<tr><td colspan="12">
306<?cs call:expando_trigger("inherited-attrs-"+cl.qualified, "closed") ?>From <?cs var:cl.kind ?>
307<a href="<?cs var:toroot ?><?cs var:cl.link ?>"><?cs var:cl.qualified ?></a>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700308<div id="inherited-attrs-<?cs var:cl.qualified ?>">
309 <div id="inherited-attrs-<?cs var:cl.qualified ?>-list"
The Android Open Source Projected187412009-01-20 14:03:55 -0800310 class="jd-inheritedlinks">
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700311 </div>
The Android Open Source Projected187412009-01-20 14:03:55 -0800312 <div id="inherited-attrs-<?cs var:cl.qualified ?>-summary" style="display: none;">
313 <table class="jd-sumtable-expando">
314 <?cs call:write_attr_summary(cl.attrs) ?></table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700315 </div>
316</div>
The Android Open Source Projected187412009-01-20 14:03:55 -0800317</td></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700318<?cs /if ?>
319<?cs /each ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800320</table>
321<?cs /if ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700322
323<?cs if:subcount(class.enumConstants) ?>
324<?cs # this next line must be exactly like this to be parsed by eclipse ?>
325<!-- =========== ENUM CONSTANT SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800326<table id="enumconstants" class="jd-sumtable"><tr><th colspan="12">Enum Values</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700327<?cs set:count = #1 ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700328 <?cs each:field=class.enumConstants ?>
329 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
330 <td class="jd-descrcol"><?cs call:type_link(field.type) ?>&nbsp;</td>
331 <td class="jd-linkcol"><a href="<?cs var:toroot ?><?cs var:field.href ?>"><?cs var:field.name ?></a>&nbsp;</td>
332 <td class="jd-descrcol" width="100%"><?cs call:short_descr(field) ?>&nbsp;</td>
333 </tr>
334 <?cs set:count = count + #1 ?>
335 <?cs /each ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700336<?cs /if ?>
337
338<?cs if:subcount(class.constants) ?>
339<?cs # this next line must be exactly like this to be parsed by eclipse ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800340<!-- =========== ENUM CONSTANT SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800341<table id="constants" class="jd-sumtable"><tr><th colspan="12">Constants</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700342<?cs call:write_constant_summary(class.constants) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800343</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700344<?cs /if ?>
345
The Android Open Source Projected187412009-01-20 14:03:55 -0800346<?cs # if there are inherited constants, write the table ?>
347<?cs if:inhconstants ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800348<?cs # this next line must be exactly like this to be parsed by eclipse ?>
349<!-- =========== ENUM CONSTANT SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800350<table id="inhconstants" class="jd-sumtable"><tr><th>
The Android Open Source Project475fa122009-02-10 15:43:57 -0800351 <a href="#" class="toggle-all" onclick="return toggleAllInherited(this, null)">[Expand]</a>
The Android Open Source Projected187412009-01-20 14:03:55 -0800352 <div style="clear:left;">Inherited Constants</div></th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700353<?cs each:cl=class.inherited ?>
354<?cs if:subcount(cl.constants) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800355<tr><td colspan="12">
356<?cs call:expando_trigger("inherited-constants-"+cl.qualified, "closed") ?>From <?cs var:cl.kind ?>
357<a href="<?cs var:toroot ?><?cs var:cl.link ?>"><?cs var:cl.qualified ?></a>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700358<div id="inherited-constants-<?cs var:cl.qualified ?>">
The Android Open Source Projected187412009-01-20 14:03:55 -0800359 <div id="inherited-constants-<?cs var:cl.qualified ?>-list"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700360 class="jd-inheritedlinks">
The Android Open Source Projected187412009-01-20 14:03:55 -0800361 </div>
362 <div id="inherited-constants-<?cs var:cl.qualified ?>-summary" style="display: none;">
363 <table class="jd-sumtable-expando">
364 <?cs call:write_constant_summary(cl.constants) ?></table>
365 </div>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700366</div>
The Android Open Source Projected187412009-01-20 14:03:55 -0800367</td></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700368<?cs /if ?>
369<?cs /each ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800370</table>
371<?cs /if ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700372
373<?cs if:subcount(class.fields) ?>
374<?cs # this next line must be exactly like this to be parsed by eclipse ?>
375<!-- =========== FIELD SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800376<table id="lfields" class="jd-sumtable"><tr><th colspan="12">Fields</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700377<?cs call:write_field_summary(class.fields) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800378</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700379<?cs /if ?>
380
The Android Open Source Projected187412009-01-20 14:03:55 -0800381<?cs # if there are inherited fields, write the table ?>
382<?cs if:inhfields ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800383<?cs # this next line must be exactly like this to be parsed by eclipse ?>
384<!-- =========== FIELD SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800385<table id="inhfields" class="jd-sumtable"><tr><th>
The Android Open Source Project475fa122009-02-10 15:43:57 -0800386 <a href="#" class="toggle-all" onclick="return toggleAllInherited(this, null)">[Expand]</a>
The Android Open Source Projected187412009-01-20 14:03:55 -0800387 <div style="clear:left;">Inherited Fields</div></th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700388<?cs each:cl=class.inherited ?>
389<?cs if:subcount(cl.fields) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800390<tr><td colspan="12">
391<?cs call:expando_trigger("inherited-fields-"+cl.qualified, "closed") ?>From <?cs var:cl.kind ?>
392<a href="<?cs var:toroot ?><?cs var:cl.link ?>"><?cs var:cl.qualified ?></a>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700393<div id="inherited-fields-<?cs var:cl.qualified ?>">
The Android Open Source Projected187412009-01-20 14:03:55 -0800394 <div id="inherited-fields-<?cs var:cl.qualified ?>-list"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700395 class="jd-inheritedlinks">
The Android Open Source Projected187412009-01-20 14:03:55 -0800396 </div>
397 <div id="inherited-fields-<?cs var:cl.qualified ?>-summary" style="display: none;">
398 <table class="jd-sumtable-expando">
399 <?cs call:write_field_summary(cl.fields) ?></table>
400 </div>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700401</div>
The Android Open Source Projected187412009-01-20 14:03:55 -0800402</td></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700403<?cs /if ?>
404<?cs /each ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800405</table>
406<?cs /if ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700407
408<?cs if:subcount(class.ctors.public) ?>
409<?cs # this next line must be exactly like this to be parsed by eclipse ?>
410<!-- ======== CONSTRUCTOR SUMMARY ======== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800411<table id="pubctors" class="jd-sumtable"><tr><th colspan="12">Public Constructors</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700412<?cs call:write_method_summary(class.ctors.public) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800413</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700414<?cs /if ?>
415
416<?cs if:subcount(class.ctors.protected) ?>
417<?cs # this next line must be exactly like this to be parsed by eclipse ?>
418<!-- ======== CONSTRUCTOR SUMMARY ======== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800419<table id="proctors" class="jd-sumtable"><tr><th colspan="12">Protected Constructors</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700420<?cs call:write_method_summary(class.ctors.protected) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800421</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700422<?cs /if ?>
423
424<?cs if:subcount(class.methods.public) ?>
425<?cs # this next line must be exactly like this to be parsed by eclipse ?>
426<!-- ========== METHOD SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800427<table id="pubmethods" class="jd-sumtable"><tr><th colspan="12">Public Methods</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700428<?cs call:write_method_summary(class.methods.public) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800429</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700430<?cs /if ?>
431
432<?cs if:subcount(class.methods.protected) ?>
433<?cs # this next line must be exactly like this to be parsed by eclipse ?>
434<!-- ========== METHOD SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800435<table id="promethods" class="jd-sumtable"><tr><th colspan="12">Protected Methods</th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700436<?cs call:write_method_summary(class.methods.protected) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800437</table>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700438<?cs /if ?>
439
The Android Open Source Projected187412009-01-20 14:03:55 -0800440<?cs # if there are inherited methods, write the table ?>
441<?cs if:inhmethods ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800442<?cs # this next line must be exactly like this to be parsed by eclipse ?>
443<!-- ========== METHOD SUMMARY =========== -->
The Android Open Source Projected187412009-01-20 14:03:55 -0800444<table id="inhmethods" class="jd-sumtable"><tr><th>
The Android Open Source Project475fa122009-02-10 15:43:57 -0800445 <a href="#" class="toggle-all" onclick="return toggleAllInherited(this, null)">[Expand]</a>
The Android Open Source Projected187412009-01-20 14:03:55 -0800446 <div style="clear:left;">Inherited Methods</div></th></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700447<?cs each:cl=class.inherited ?>
448<?cs if:subcount(cl.methods) ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800449<tr><td colspan="12"><?cs call:expando_trigger("inherited-methods-"+cl.qualified, "closed") ?>
450From <?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 -0700451<div id="inherited-methods-<?cs var:cl.qualified ?>">
The Android Open Source Projected187412009-01-20 14:03:55 -0800452 <div id="inherited-methods-<?cs var:cl.qualified ?>-list"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700453 class="jd-inheritedlinks">
The Android Open Source Projected187412009-01-20 14:03:55 -0800454 </div>
455 <div id="inherited-methods-<?cs var:cl.qualified ?>-summary" style="display: none;">
456 <table class="jd-sumtable-expando">
457 <?cs call:write_method_summary(cl.methods) ?></table>
458 </div>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700459</div>
The Android Open Source Projected187412009-01-20 14:03:55 -0800460</td></tr>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700461<?cs /if ?>
462<?cs /each ?>
The Android Open Source Projected187412009-01-20 14:03:55 -0800463</table>
464<?cs /if ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700465
466</div><!-- jd-descr (summary) -->
467
468<!-- Details -->
469
470<?cs def:write_field_details(fields) ?>
471<?cs each:field=fields ?>
472<?cs # this next line must be exactly like this to be parsed by eclipse ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800473<?cs # the A tag in the next line must remain where it is, so that Eclipse can parse the docs ?>
474<A NAME="<?cs var:field.anchor ?>"></A>
475<div class="jd-details">
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700476 <h4 class="jd-details-title">
477 <span class="normal">
478 <?cs var:field.scope ?>
479 <?cs var:field.static ?>
480 <?cs var:field.final ?>
481 <?cs call:type_link(field.type) ?>
482 </span>
483 <?cs var:field.name ?>
484 </h4>
485 <div class="jd-details-descr"><?cs call:description(field) ?>
486 <?cs if:subcount(field.constantValue) ?>
487 <div class="jd-tagdata">
488 <span class="jd-tagtitle">Constant Value: </span>
489 <span>
490 <?cs if:field.constantValue.isString ?>
491 <?cs var:field.constantValue.str ?>
492 <?cs else ?>
493 <?cs var:field.constantValue.dec ?>
494 (<?cs var:field.constantValue.hex ?>)
495 <?cs /if ?>
496 </span>
497 </div>
498 <?cs /if ?>
499 </div>
500</div>
501<?cs /each ?>
502<?cs /def ?>
503
504<?cs def:write_method_details(methods) ?>
505<?cs each:method=methods ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800506<?cs # the A tag in the next line must remain where it is, so that Eclipse can parse the docs ?>
507<A NAME="<?cs var:method.anchor ?>"></A>
508<div class="jd-details">
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700509 <h4 class="jd-details-title">
510 <span class="normal">
511 <?cs var:method.scope ?>
512 <?cs var:method.static ?>
513 <?cs var:method.final ?>
514 <?cs var:method.abstract ?>
515 <?cs var:method.synchronized ?>
516 <?cs call:type_link(method.returnType) ?>
517 </span>
The Android Open Source Projected187412009-01-20 14:03:55 -0800518 <span class="sympad"><?cs var:method.name ?></span>
519 <span class="normal">(<?cs call:parameter_list(method.params) ?>)</span>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700520 </h4>
521 <div class="jd-details-descr"><?cs call:description(method) ?></div>
522</div>
523<?cs /each ?>
524<?cs /def ?>
525
526<?cs def:write_attr_details(attrs) ?>
527<?cs each:attr=attrs ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800528<?cs # the A tag in the next line must remain where it is, so that Eclipse can parse the docs ?>
529<A NAME="<?cs var:attr.anchor ?>"></A>
530<div class="jd-details">
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700531 <h4 class="jd-details-title"><?cs var:attr.name ?></h4>
532 <div class="jd-details-descr">
533 <?cs call:description(attr) ?>
534
535 <div class="jd-tagdata">
536 <h5 class="jd-tagtitle">Related Methods</h5>
537 <ul class="nolist">
538 <?cs each:m=attr.methods ?>
539 <li><a href="<?cs var:toroot ?><?cs var:m.href ?>"><?cs var:m.name ?></a></li>
540 <?cs /each ?>
541 </ul>
542 </div>
543 </div>
544</div>
545<?cs /each ?>
546<?cs /def ?>
547
548
549<!-- XML Attributes -->
550<?cs if:subcount(class.attrs) ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800551<?cs # this next line must be exactly like this to be parsed by eclipse ?>
552<!-- ========= FIELD DETAIL ======== -->
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700553<h2>XML Attributes</h2>
554<?cs call:write_attr_details(class.attrs) ?>
555<?cs /if ?>
556
557<!-- Enum Values -->
558<?cs if:subcount(class.enumConstants) ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800559<?cs # this next line must be exactly like this to be parsed by eclipse ?>
560<!-- ========= ENUM CONSTANTS DETAIL ======== -->
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700561<h2>Enum Values</h2>
562<?cs call:write_field_details(class.enumConstants) ?>
563<?cs /if ?>
564
565<!-- Constants -->
566<?cs if:subcount(class.constants) ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800567<?cs # this next line must be exactly like this to be parsed by eclipse ?>
568<!-- ========= ENUM CONSTANTS DETAIL ======== -->
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700569<h2>Constants</h2>
570<?cs call:write_field_details(class.constants) ?>
571<?cs /if ?>
572
573<!-- Fields -->
574<?cs if:subcount(class.fields) ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800575<?cs # this next line must be exactly like this to be parsed by eclipse ?>
576<!-- ========= FIELD DETAIL ======== -->
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700577<h2>Fields</h2>
578<?cs call:write_field_details(class.fields) ?>
579<?cs /if ?>
580
581<!-- Public ctors -->
582<?cs if:subcount(class.ctors.public) ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800583<?cs # this next line must be exactly like this to be parsed by eclipse ?>
584<!-- ========= CONSTRUCTOR DETAIL ======== -->
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700585<h2>Public Constructors</h2>
586<?cs call:write_method_details(class.ctors.public) ?>
587<?cs /if ?>
588
589<?cs # this next line must be exactly like this to be parsed by eclipse ?>
590<!-- ========= CONSTRUCTOR DETAIL ======== -->
591<!-- Protected ctors -->
592<?cs if:subcount(class.ctors.protected) ?>
593<h2>Protected Constructors</h2>
594<?cs call:write_method_details(class.ctors.protected) ?>
595<?cs /if ?>
596
597<?cs # this next line must be exactly like this to be parsed by eclipse ?>
The Android Open Source Project41977d72009-02-19 10:57:29 -0800598<!-- ========= METHOD DETAIL ======== -->
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700599<!-- Public methdos -->
600<?cs if:subcount(class.methods.public) ?>
601<h2>Public Methods</h2>
602<?cs call:write_method_details(class.methods.public) ?>
603<?cs /if ?>
604
605<?cs # this next line must be exactly like this to be parsed by eclipse ?>
606<!-- ========= METHOD DETAIL ======== -->
607<?cs if:subcount(class.methods.protected) ?>
608<h2>Protected Methods</h2>
609<?cs call:write_method_details(class.methods.protected) ?>
610<?cs /if ?>
611
The Android Open Source Project41977d72009-02-19 10:57:29 -0800612<?cs # the next two lines must be exactly like this to be parsed by eclipse ?>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700613<!-- ========= END OF CLASS DATA ========= -->
The Android Open Source Project41977d72009-02-19 10:57:29 -0800614<A NAME="navbar_top"></A>
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700615
616<?cs include:"footer.cs" ?>
617</div> <!-- jd-content -->
618
619</div><!-- end doc-content -->
The Android Open Source Project475fa122009-02-10 15:43:57 -0800620
621<?cs include:"trailer.cs" ?>
622
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700623</body>
624</html>