{!
function byName(a, b) {
if (a.name != undefined && b.name != undefined) {
a = a.name.toLowerCase();
b = b.name.toLowerCase();
if (a < b) return -1;
if (a > b) return 1;
return 0;
}
}
function summarize(desc) {
if (typeof desc != "undefined")
return desc.match(/([\w\W]+?\.)[^a-z0-9]/i)? RegExp.$1 : desc;
}
thisClass = data[0];
if (thisClass.methods) thisClass.methods.sort(byName);
if (thisClass.properties) thisClass.properties.sort(byName);
if (thisClass.events) thisClass.events.sort(byName);
!}
JsDoc: {+thisClass.alias+}
Static Class {+thisClass.alias+}
Extends {+augment+}.
Defined in {+thisClass.filename+}
Deprecated {+thisClass.deprecated.desc+}
{+thisClass.classDesc+}
Author: {+author+}
Version: {+version+}
Field Summary
|
<private> <static> {+(property.type||"object")+}
|
{+property.name+}
{+summarize(property.desc)+}
|
Constructor Summary |
{+cn.alias+}({+cn.signature()+})
{+summarize(cn.desc)+}
|
Method Summary
|
<private> <static>
{+ret.type+}
|
{+method.name+}({+method.signature()+})
{+summarize(method.desc)+}
|
Event Summary
|
<private>
{+ret.type+}
void
|
{+event.name+}({+event.signature()+})
{+summarize(event.desc)+}
|
{+property.name+}
<private> <static> {+linkToType(property.type||"object")+} {+property.name+}
Deprecated {+property.deprecated.desc+}
{+property.desc+}
Since: {+since+}
{+thisClass.alias+}
{+cn.alias+}({+cn.signature()+})
Deprecated {+cn.deprecated.desc+}
{+cn.desc+}
Parameters:
{+linkToType(param.type)+} {+param.name+}
?
= {+param.defaultValue+} - {+param.desc+}
{+method.name+}
<private> <static> {+linkToType(ret.type)+} {+method.name+}({+method.signature()+})
Deprecated {+method.deprecated.desc+}
{+method.desc+}
Since: {+since+}
Parameters:
{+linkToType(param.type)+} {+param.name+}
?
= {+param.defaultValue+} - {+param.desc+}
Returns:
{+linkToType(ret.type)+}
{+ret.desc+}
Throws:
{+linkToType(ex.type)+}
{+ex.desc+}
{+event.name+}
<private> <static> {+linkToType(ret.type)+} {+event.name+}({+event.signature()+})
Deprecated {+event.deprecated.desc+}
{+event.desc+}
Since: {+since+}
Parameters:
{+linkToType(param.type)+} {+param.name+}
?
= {+param.defaultValue+} - {+param.desc+}
Returns:
{+linkToType(ret.type)+}
{+ret.desc+}
Throws:
{+linkToType(ex.type)+}
{+ex.desc+}
Documentation generated by
JsDoc Toolkit {+JsDoc.VERSION+} on {+new Date()+}