sbin/res/jsdoc/app/test/module.js
author hamidouk
Mon, 30 Jan 2012 17:27:20 +0100
branchpopcorn-port
changeset 747 21ca8cd8ac83
parent 520 fe008e95a716
permissions -rw-r--r--
changed a setting.

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

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

	var myPrivateMethod = function () {
	}

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