sbin/res/jsdoc/app/test/module.js
author hamidouk
Fri, 27 Jan 2012 17:27:13 +0100
branchpopcorn-port
changeset 740 3b60f3beb521
parent 520 fe008e95a716
permissions -rw-r--r--
forgot debug printf.

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

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

	var myPrivateMethod = function () {
	}

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