| 12345678910111213141516171819202122232425262728293031 |
- /**
- @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) {
- }
- }
|