sbin/res/jsdoc/app/test/module.js
author hamidouk
Fri, 17 Feb 2012 11:57:27 +0100
branchpopcorn-port
changeset 817 e9599ee285ab
parent 520 fe008e95a716
permissions -rw-r--r--
implements the most asked for feature ever : placeholder text in the annotation creation textfield.

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

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

	var myPrivateMethod = function () {
	}

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