| author | veltr |
| Mon, 05 Nov 2012 19:03:44 +0100 | |
| branch | platform-restapi |
| changeset 978 | fcddc519938c |
| parent 520 | fe008e95a716 |
| permissions | -rw-r--r-- |
/** @constructor */ function Layout(p) { this.init = function(p) { } this.getId = function() { } /** @type Page */ this.orientation = "landscape"; } /** @constructor @augments Layout */ function Page() { this.reset = function(b) { } } /** @extends Page @constructor */ function ThreeColumnPage() { this.init = function(resetCode) { } }