author | Daniel Hans <daniel.m.hans@gmail.com> |
Sun, 08 Nov 2009 12:08:05 -0800 | |
changeset 3081 | 14077185c46e |
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) { } }