aboutsummaryrefslogtreecommitdiff
path: root/tools/jsdoc-toolkit-2.4.0/app/test/param_inline.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/jsdoc-toolkit-2.4.0/app/test/param_inline.js')
-rw-r--r--tools/jsdoc-toolkit-2.4.0/app/test/param_inline.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/tools/jsdoc-toolkit-2.4.0/app/test/param_inline.js b/tools/jsdoc-toolkit-2.4.0/app/test/param_inline.js
new file mode 100644
index 0000000..09845b2
--- /dev/null
+++ b/tools/jsdoc-toolkit-2.4.0/app/test/param_inline.js
@@ -0,0 +1,37 @@
+/**
+ @constructor
+ @param columns The number of columns.
+*/
+function Layout(/**int*/columns){
+ /**
+ @param [id] The id of the element.
+ @param elName The name of the element.
+ */
+ this.getElement = function(
+ /** string */ elName,
+ /** number|string */ id
+ ) {
+ };
+
+ /**
+ @constructor
+ */
+ this.Canvas = function(top, left, /**int*/width, height) {
+ /** Is it initiated yet? */
+ this.initiated = true;
+ }
+
+ this.rotate = function(/**nothing*/) {
+ }
+
+ /**
+ @param x
+ @param y
+ @param {zoppler} z*/
+ this.init = function(x, y, /**abbler*/z) {
+ /** The xyz. */
+ this.xyz = x+y+z;
+ this.getXyz = function() {
+ }
+ }
+}