OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <link rel="import" href="annotations.html"> | 2 <link rel="import" href="annotations.html"> |
3 <link rel="import" href="category.html"> | 3 <link rel="import" href="category.html"> |
4 <link rel="import" href="comment.html"> | 4 <link rel="import" href="comment.html"> |
5 <link rel="import" href="item.html"> | 5 <link rel="import" href="item.html"> |
6 | 6 |
7 <polymer-element name="dartdoc-class" attributes="item"> | 7 <polymer-element name="dartdoc-class" attributes="item"> |
8 <template> | 8 <template> |
9 <dartdoc-annotation annotations="{{item.annotations}}"></dartdoc-annotation> | 9 <dartdoc-annotation annotations="{{item.annotations}}"></dartdoc-annotation> |
10 | 10 |
11 <div class="page-header"><h1> | 11 <div class="page-header"><h1> |
12 {{item.nameWithGeneric}} | 12 {{item.nameWithGeneric}} |
13 <template if="{{item.isAbstract}}">abstract</template> | 13 <template if="{{item.isAbstract}}">abstract</template> |
14 class | 14 class |
15 </h1></div> | 15 </h1></div> |
16 | 16 |
17 <p id="interfaces"></p> | 17 <p id="interfaces"></p> |
18 <p id="subclasses"></p> | 18 <p id="subclasses"></p> |
19 | 19 |
20 <!-- Comment --> | 20 <!-- Comment --> |
21 <!-- TODO(alanknight): The div with itemList and panel are here to | 21 <!-- TODO(alanknight): The div with itemList and panel are here to |
22 convince it to use the right paragraph spacing. Seems pretty awful. --> | 22 convince it to use the right paragraph spacing. Seems pretty awful. --> |
23 <div id="itemList"> | 23 <div id="itemList"> |
24 <div is="dartdoc-comment" class="panel" item="{{item}}"></div> | 24 <div is="dartdoc-comment" class="panel" item="{{item}}"></div> |
25 </div> | 25 </div> |
26 | 26 |
27 <div class="accordion" id="accordion-grouping"> | 27 <div class="accordion" id="accordion-grouping"> |
28 <dartdoc-category category="{{item.constructors}}" | 28 <dartdoc-category category="{{item.constructors}}" |
29 methods="{{lazyConstructors}}"></dartdoc-category> | 29 methods="{{lazyConstructors}}"></dartdoc-category> |
30 <dartdoc-category category="{{item.functions}}" | 30 <dartdoc-category category="{{item.instanceFunctions}}" |
31 methods="{{lazyFunctions}}"></dartdoc-category> | 31 methods="{{lazyFunctions}}"></dartdoc-category> |
32 <dartdoc-category category="{{item.operators}}" | 32 <dartdoc-category category="{{item.operators}}" |
33 methods="{{lazyOperators}}"></dartdoc-category> | 33 methods="{{lazyOperators}}"></dartdoc-category> |
34 <dartdoc-category category="{{item.staticFunctions}}" | 34 <dartdoc-category category="{{item.staticFunctions}}" |
35 methods="{{lazyStaticFunctions}}"></dartdoc-category> | 35 methods="{{lazyStaticFunctions}}"></dartdoc-category> |
36 <dartdoc-category category="{{item.variables}}" | 36 <dartdoc-category category="{{item.instanceVariables}}" |
37 variables="{{lazyVariables}}"></dartdoc-category> | 37 variables="{{lazyVariables}}"></dartdoc-category> |
38 <dartdoc-category category="{{item.staticVariables}}" | 38 <dartdoc-category category="{{item.staticVariables}}" |
39 variables="{{lazyStaticVariables}}"></dartdoc-category> | 39 variables="{{lazyStaticVariables}}"></dartdoc-category> |
40 </div> | 40 </div> |
41 </template> | 41 </template> |
42 | 42 |
43 <script type="application/dart" src="class.dart"></script> | 43 <script type="application/dart" src="class.dart"></script> |
44 </polymer-element> | 44 </polymer-element> |
OLD | NEW |