sbin/res/jsdoc/app/test/module.js
author hamidouk
Mon, 02 Jan 2012 12:41:13 +0100
branchpopcorn-port
changeset 560 68e91efc5a58
parent 520 fe008e95a716
permissions -rw-r--r--
the arrow is now aligned with the pixels under it.

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

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

	var myPrivateMethod = function () {
	}

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