sbin/res/jsdoc/app/test/module.js
author hamidouk
Mon, 23 Jan 2012 11:19:47 +0100
branchpopcorn-port
changeset 692 4eca4ee558a3
parent 520 fe008e95a716
permissions -rw-r--r--
this time got it right.

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

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

	var myPrivateMethod = function () {
	}

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