blob: 10778860c40e188ce1cda96d24a98a595c94d754 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001<?cs include:"doctype.cs" ?>
2<?cs include:"macros.cs" ?>
3<html>
4<?cs include:"head_tag.cs" ?>
5<body>
6<script type="text/javascript">
7function toggleInherited(linkObj, expand) {
8 var base = linkObj.getAttribute("id");
9 var list = document.getElementById(base + "-list");
10 var summary = document.getElementById(base + "-summary");
11 var trigger = document.getElementById(base + "-trigger");
12 var a = $(linkObj);
13 if ( (expand == null && a.hasClass("closed")) || expand ) {
14 list.style.display = "none";
15 summary.style.display = "block";
16 trigger.src = "<?cs var:toroot ?>assets/images/triangle-opened.png";
17 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");
25 }
26 return false;
27}
28</script>
29
30<?cs include:"header.cs" ?>
31
32<div class="g-unit" id="doc-content">
33
34<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) ?>
107&#124; <a href="#" onclick="return toggleAllSummaryInherited(this)">[Expand All]</a>
108<?cs /if ?>
109</div>
110</div>
111
112<?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>
147 <?cs /loop ?>
148 <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
159<?cs # this next line must be exactly like this to be parsed by eclipse ?>
160
161<?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 ?>
174
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
182<?cs call:see_also_tags(class.seeAlso) ?>
183
184</div><!-- jd-descr -->
185
186
187<?cs # summary macros ?>
188
189<?cs def:write_method_summary(methods) ?>
190<?cs set:count = #1 ?>
191<?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>
201 <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>
206 <?cs /if ?>
207 </td></tr>
208<?cs set:count = count + #1 ?>
209<?cs /each ?>
210<?cs /def ?>
211
212<?cs def:write_field_summary(fields) ?>
213<?cs set:count = #1 ?>
214 <?cs each:field=fields ?>
215 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
216 <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>
223 </tr>
224 <?cs set:count = count + #1 ?>
225 <?cs /each ?>
226<?cs /def ?>
227
228<?cs def:write_constant_summary(fields) ?>
229<?cs set:count = #1 ?>
230 <?cs each:field=fields ?>
231 <tr <?cs if:count % #2 ?>class="alt-color"<?cs /if ?> >
232 <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>
235 </tr>
236 <?cs set:count = count + #1 ?>
237 <?cs /each ?>
238<?cs /def ?>
239
240<?cs def:write_attr_summary(attrs) ?>
241<?cs set:count = #1 ?>
242 <tr>
243 <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>
246 </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>
250 <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 ?>
253 </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 ?>
258<?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 ?>
275<?cs /def ?>
276
277<?cs # end macros ?>
278
279<div class="jd-descr">
280<h2>Summary</h2>
281
282<?cs if:subcount(class.inners) ?>
283<?cs # this next line must be exactly like this to be parsed by eclipse ?>
284<!-- ======== 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 ?>
290<?cs if:subcount(class.attrs) ?>
291<!-- =========== FIELD SUMMARY =========== -->
292<table id="lattrs" class="jd-sumtable"><tr><th colspan="12">XML Attributes</th></tr>
293<?cs call:write_attr_summary(class.attrs) ?>
294<?cs /if ?>
295
296<?cs # if there are inherited attrs, write the table ?>
297<?cs if:inhattrs ?>
298<?cs # this next line must be exactly like this to be parsed by eclipse ?>
299<!-- =========== FIELD SUMMARY =========== -->
300<table id="inhattrs" class="jd-sumtable"><tr><th>
301 <a href="#" class="toggle-all" onclick="return toggleAllInherited(this, null)">[Expand]</a>
302 <div style="clear:left;">Inherited XML Attributes</div></th></tr>
303<?cs each:cl=class.inherited ?>
304<?cs if:subcount(cl.attrs) ?>
305<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>
308<div id="inherited-attrs-<?cs var:cl.qualified ?>">
309 <div id="inherited-attrs-<?cs var:cl.qualified ?>-list"
310 class="jd-inheritedlinks">
311 </div>
312 <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>
315 </div>
316</div>
317</td></tr>
318<?cs /if ?>
319<?cs /each ?>
320</table>
321<?cs /if ?>
322
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 =========== -->
326<table id="enumconstants" class="jd-sumtable"><tr><th colspan="12">Enum Values</th></tr>
327<?cs set:count = #1 ?>
328 <?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 ?>
336<?cs /if ?>
337
338<?cs if:subcount(class.constants) ?>
339<?cs # this next line must be exactly like this to be parsed by eclipse ?>
340<!-- =========== ENUM CONSTANT SUMMARY =========== -->
341<table id="constants" class="jd-sumtable"><tr><th colspan="12">Constants</th></tr>
342<?cs call:write_constant_summary(class.constants) ?>
343</table>
344<?cs /if ?>
345
346<?cs # if there are inherited constants, write the table ?>
347<?cs if:inhconstants ?>
348<?cs # this next line must be exactly like this to be parsed by eclipse ?>
349<!-- =========== ENUM CONSTANT SUMMARY =========== -->
350<table id="inhconstants" class="jd-sumtable"><tr><th>
351 <a href="#" class="toggle-all" onclick="return toggleAllInherited(this, null)">[Expand]</a>
352 <div style="clear:left;">Inherited Constants</div></th></tr>
353<?cs each:cl=class.inherited ?>
354<?cs if:subcount(cl.constants) ?>
355<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>
358<div id="inherited-constants-<?cs var:cl.qualified ?>">
359 <div id="inherited-constants-<?cs var:cl.qualified ?>-list"
360 class="jd-inheritedlinks">
361 </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>
366</div>
367</td></tr>
368<?cs /if ?>
369<?cs /each ?>
370</table>
371<?cs /if ?>
372
373<?cs if:subcount(class.fields) ?>
374<?cs # this next line must be exactly like this to be parsed by eclipse ?>
375<!-- =========== FIELD SUMMARY =========== -->
376<table id="lfields" class="jd-sumtable"><tr><th colspan="12">Fields</th></tr>
377<?cs call:write_field_summary(class.fields) ?>
378</table>
379<?cs /if ?>
380
381<?cs # if there are inherited fields, write the table ?>
382<?cs if:inhfields ?>
383<?cs # this next line must be exactly like this to be parsed by eclipse ?>
384<!-- =========== FIELD SUMMARY =========== -->
385<table id="inhfields" class="jd-sumtable"><tr><th>
386 <a href="#" class="toggle-all" onclick="return toggleAllInherited(this, null)">[Expand]</a>
387 <div style="clear:left;">Inherited Fields</div></th></tr>
388<?cs each:cl=class.inherited ?>
389<?cs if:subcount(cl.fields) ?>
390<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>
393<div id="inherited-fields-<?cs var:cl.qualified ?>">
394 <div id="inherited-fields-<?cs var:cl.qualified ?>-list"
395 class="jd-inheritedlinks">
396 </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>
401</div>
402</td></tr>
403<?cs /if ?>
404<?cs /each ?>
405</table>
406<?cs /if ?>
407
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 ======== -->
411<table id="pubctors" class="jd-sumtable"><tr><th colspan="12">Public Constructors</th></tr>
412<?cs call:write_method_summary(class.ctors.public) ?>
413</table>
414<?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 ======== -->
419<table id="proctors" class="jd-sumtable"><tr><th colspan="12">Protected Constructors</th></tr>
420<?cs call:write_method_summary(class.ctors.protected) ?>
421</table>
422<?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 =========== -->
427<table id="pubmethods" class="jd-sumtable"><tr><th colspan="12">Public Methods</th></tr>
428<?cs call:write_method_summary(class.methods.public) ?>
429</table>
430<?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 =========== -->
435<table id="promethods" class="jd-sumtable"><tr><th colspan="12">Protected Methods</th></tr>
436<?cs call:write_method_summary(class.methods.protected) ?>
437</table>
438<?cs /if ?>
439
440<?cs # if there are inherited methods, write the table ?>
441<?cs if:inhmethods ?>
442<?cs # this next line must be exactly like this to be parsed by eclipse ?>
443<!-- ========== METHOD SUMMARY =========== -->
444<table id="inhmethods" class="jd-sumtable"><tr><th>
445 <a href="#" class="toggle-all" onclick="return toggleAllInherited(this, null)">[Expand]</a>
446 <div style="clear:left;">Inherited Methods</div></th></tr>
447<?cs each:cl=class.inherited ?>
448<?cs if:subcount(cl.methods) ?>
449<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>
451<div id="inherited-methods-<?cs var:cl.qualified ?>">
452 <div id="inherited-methods-<?cs var:cl.qualified ?>-list"
453 class="jd-inheritedlinks">
454 </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>
459</div>
460</td></tr>
461<?cs /if ?>
462<?cs /each ?>
463</table>
464<?cs /if ?>
465
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 ?>
473<?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">
476 <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 ?>
506<?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">
509 <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>
518 <span class="sympad"><?cs var:method.name ?></span>
519 <span class="normal">(<?cs call:parameter_list(method.params) ?>)</span>
520 </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 ?>
528<?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">
531 <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) ?>
551<?cs # this next line must be exactly like this to be parsed by eclipse ?>
552<!-- ========= FIELD DETAIL ======== -->
553<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) ?>
559<?cs # this next line must be exactly like this to be parsed by eclipse ?>
560<!-- ========= ENUM CONSTANTS DETAIL ======== -->
561<h2>Enum Values</h2>
562<?cs call:write_field_details(class.enumConstants) ?>
563<?cs /if ?>
564
565<!-- Constants -->
566<?cs if:subcount(class.constants) ?>
567<?cs # this next line must be exactly like this to be parsed by eclipse ?>
568<!-- ========= ENUM CONSTANTS DETAIL ======== -->
569<h2>Constants</h2>
570<?cs call:write_field_details(class.constants) ?>
571<?cs /if ?>
572
573<!-- Fields -->
574<?cs if:subcount(class.fields) ?>
575<?cs # this next line must be exactly like this to be parsed by eclipse ?>
576<!-- ========= FIELD DETAIL ======== -->
577<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) ?>
583<?cs # this next line must be exactly like this to be parsed by eclipse ?>
584<!-- ========= CONSTRUCTOR DETAIL ======== -->
585<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 ?>
598<!-- ========= METHOD DETAIL ======== -->
599<!-- 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
612<?cs # the next two lines must be exactly like this to be parsed by eclipse ?>
613<!-- ========= END OF CLASS DATA ========= -->
614<A NAME="navbar_top"></A>
615
616<?cs include:"footer.cs" ?>
617</div> <!-- jd-content -->
618
619</div><!-- end doc-content -->
620
621<?cs include:"trailer.cs" ?>
622
623</body>
624</html>