OLD | NEW |
(Empty) | |
| 1 <symbol alias="{+data.alias+}"> |
| 2 <name>{+data.name+}</name> |
| 3 <memberOf>{+data.memberOf+}</memberOf> |
| 4 <isStatic>{+data.isStatic+}</isStatic> |
| 5 <isa>{+data.isa+}</isa> |
| 6 <desc>{+data.desc+}</desc> |
| 7 <classDesc>{+data.classDesc+}</classDesc> |
| 8 |
| 9 <methods><for each="method" in="data.methods"> |
| 10 <method> |
| 11 <name>{+method.name+}</name> |
| 12 <memberOf>{+method.memberOf+}</memberOf> |
| 13 <isStatic>{+method.isStatic+}</isStatic> |
| 14 <desc>{+method.desc+}</desc> |
| 15 <params><for each="param" in="method.params"> |
| 16 <param> |
| 17 <type>{+param.type+}</type> |
| 18 <name>{+param.name+}</name> |
| 19 <desc>{+param.desc+}</desc> |
| 20 <defaultValue>{+param.defaultValue+}</de
faultValue> |
| 21 </param></for> |
| 22 </params> |
| 23 </method></for> |
| 24 </methods> |
| 25 |
| 26 <properties><for each="property" in="data.properties"> |
| 27 <property> |
| 28 <name>{+property.name+}</name> |
| 29 <memberOf>{+property.memberOf+}</memberOf> |
| 30 <isStatic>{+property.isStatic+}</isStatic> |
| 31 <desc>{+property.desc+}</desc> |
| 32 <type>{+property.type+}</type> |
| 33 </property></for> |
| 34 </properties> |
| 35 </symbol> |
OLD | NEW |