changeset 3041 | c8f47f0b6697 |
3040:8f9580309846 | 3041:c8f47f0b6697 |
---|---|
1 /** |
|
2 @constructor |
|
3 */ |
|
4 function Layout(p) { |
|
5 this.init = function(p) { |
|
6 } |
|
7 |
|
8 this.getId = function() { |
|
9 } |
|
10 |
|
11 /** @type Page */ |
|
12 this.orientation = "landscape"; |
|
13 } |
|
14 |
|
15 /** |
|
16 @constructor |
|
17 @augments Layout |
|
18 */ |
|
19 function Page() { |
|
20 this.reset = function(b) { |
|
21 } |
|
22 } |
|
23 |
|
24 /** |
|
25 @extends Page |
|
26 @constructor |
|
27 */ |
|
28 function ThreeColumnPage() { |
|
29 this.init = function(resetCode) { |
|
30 } |
|
31 } |