/tags/jsdoc_toolkit-1.3.3/test/data/augments.js
JavaScript | 32 lines | 15 code | 4 blank | 13 comment | 0 complexity | 77dabbdf743cd011c0eeb16e9fc3de2b 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) {
- }
- }