sbin/res/jsdoc/app/test/module.js
author hamidouk
Tue, 31 Jan 2012 17:22:10 +0100
branchnih-youtube
changeset 756 f971fb0f2a3e
parent 520 fe008e95a716
permissions -rw-r--r--
more work on the youtube rewrite front.

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

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

	var myPrivateMethod = function () {
	}

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