| 1 | /** |
| 2 | @constructor |
| 3 | @param columns The number of columns. |
| 4 | */ |
| 5 | function Layout(/**int*/columns){ |
| 6 | /** |
| 7 | @param [id] The id of the element. |
| 8 | @param elName The name of the element. |
| 9 | */ |
| 10 | this.getElement = function( |
| 11 | /** string */ elName, |
| 12 | /** number|string */ id |
| 13 | ) { |
| 14 | }; |
| 15 | |
| 16 | /** |
| 17 | @constructor |
| 18 | */ |
| 19 | this.Canvas = function(top, left, /**int*/width, height) { |
| 20 | /** Is it initiated yet? */ |
| 21 | this.initiated = true; |
| 22 | } |
| 23 | |
| 24 | this.rotate = function(/**nothing*/) { |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | @param x |
| 29 | @param y |
| 30 | @param {zoppler} z*/ |
| 31 | this.init = function(x, y, /**abbler*/z) { |
| 32 | /** The xyz. */ |
| 33 | this.xyz = x+y+z; |
| 34 | this.getXyz = function() { |
| 35 | } |
| 36 | } |
| 37 | } |