author | Sverre Rabbelier <srabbelier@gmail.com> |
Mon, 02 Nov 2009 16:13:32 +0100 | |
changeset 3072 | edae0fb956c9 |
parent 3041 | c8f47f0b6697 |
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) { } }