sbin/res/jsdoc/app/test/module.js
author hamidouk
Mon, 16 Jan 2012 17:27:23 +0100
branchpopcorn-port
changeset 644 492d3c8d776a
parent 520 fe008e95a716
permissions -rw-r--r--
WIP - redrawing the sparkling when an annotation is added.

/** @namespace */
myProject = myProject || {};

/** @namespace */
myProject.myModule = (function () {
	/** describe myPrivateVar here */
	var myPrivateVar = "";

	var myPrivateMethod = function () {
	}

	/** @scope myProject.myModule */
	return {
		myPublicMethod: function () {
		}
	};
})();