/** * Class Description * @namespace FIRSTCLASS. * @module * @requires * @optional * @title */ /** * Constructor definition * @class * @constructor * @param {} * @param ... */ FIRSTCLASS.. = function() { }; /** * Public static variables definitions */ /** * Property Comment, describe it here * * @property * @type * @default */ FIRSTCLASS... = ; /** * Private member variables * * Private variables are identified by the convention of naming them with a leading underscore. * i.e. this._privateVariable */ /** * Variable Comment, describe it here * * @property _ * @type * @default */ FIRSTCLASS...prototype._ = ; /** * Public member variables */ /** * Variable Comment, describe it here * * @property * @type * @default */ FIRSTCLASS...prototype. = ; /** * Public Static Method Definitions */ /** * Method Comment, describe it here * * @Method . * @param {} paramname * @param ... * @return {} * @static */ FIRSTCLASS... = function() { }; /** * Public method definitions */ /** * Method Comment, describe it here * * @Method . * @param {} paramname * @param ... * @return {} */ FIRSTCLASS...prototype. = function() { }; YAHOO.register("fc", FIRSTCLASS.., {version: "0.0.1", build: "1"});