sbin/res/jsdoc/app/test/module.js
author hamidouk
Tue, 17 Jan 2012 14:48:37 +0100
branchpopcorn-port
changeset 647 2984fbbcbe35
parent 520 fe008e95a716
permissions -rw-r--r--
send a signal when loading an annotation from hashtag.

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

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

	var myPrivateMethod = function () {
	}

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