sbin/res/jsdoc/app/test/module.js
author hamidouk
Mon, 06 Feb 2012 16:04:46 +0100
branchpopcorn-port
changeset 783 591b117c19ca
parent 520 fe008e95a716
permissions -rw-r--r--
be more picky about what we get.

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

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

	var myPrivateMethod = function () {
	}

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