63 {ClassDescription} |
63 {ClassDescription} |
64 <h3>Derived from</h3> |
64 <h3>Derived from</h3> |
65 {ClassSuper} |
65 {ClassSuper} |
66 <h3>Class Attributes</h3> |
66 <h3>Class Attributes</h3> |
67 {GlobalsList} |
67 {GlobalsList} |
|
68 <h3>Class Methods</h3> |
|
69 {ClassMethodList} |
68 <h3>Methods</h3> |
70 <h3>Methods</h3> |
69 {MethodList} |
71 {MethodList} |
|
72 <h3>Static Methods</h3> |
|
73 {StaticMethodList} |
70 {MethodDetails} |
74 {MethodDetails} |
71 <div align="right"><a href="#top">Up</a></div> |
75 <div align="right"><a href="#top">Up</a></div> |
72 <hr />''' |
76 <hr />''' |
73 |
77 |
74 methodTemplate = \ |
78 methodTemplate = \ |
75 '''<a NAME="{Anchor}.{Method}" ID="{Anchor}.{Method}"></a> |
79 '''<a NAME="{Anchor}.{Method}" ID="{Anchor}.{Method}"></a> |
76 <h4>{Class}.{Method}</h4> |
80 <h4>{Class}.{Method}{MethodClassifier}</h4> |
77 <b>{Method}</b>(<i>{Params}</i>) |
81 <b>{Method}</b>(<i>{Params}</i>) |
78 {MethodDescription}''' |
82 {MethodDescription}''' |
79 |
83 |
80 constructorTemplate = \ |
84 constructorTemplate = \ |
81 '''<a NAME="{Anchor}.{Method}" ID="{Anchor}.{Method}"></a> |
85 '''<a NAME="{Anchor}.{Method}" ID="{Anchor}.{Method}"></a> |