| author | cavaliet |
| Fri, 24 Aug 2012 11:59:40 +0200 | |
| branch | new-model |
| changeset 934 | aa1ede2e2c29 |
| 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) { } }