/branches/jsdoc_tk_gui/setup/test/data/augments.js
JavaScript | 32 lines | 15 code | 4 blank | 13 comment | 0 complexity | 0d1677fe6b718acf80bebd57b506dbcd MD5 | raw file
- /**
- @ class
- @constructor
- */
- function Layout(p) {
- this.init = function(p) {
- }
-
- this.getId = function() {
- }
-
- /** @type string */
- this.orientation = "landscape";
- }
-
- /**
- @constructor
- @augments Layout
- */
- function Page() {
- this.reset = function(b) {
- }
- }
-
- /**
- @extends Page
- @constructor
- */
- function ThreeColumnPage() {
- this.init = function(p) {
- }
- }