thirdparty/jsdoctoolkit/app/test/augments2.js
changeset 3041 c8f47f0b6697
equal deleted inserted replaced
3040:8f9580309846 3041:c8f47f0b6697
       
     1 /**
       
     2 @constructor
       
     3 */
       
     4 function LibraryItem() {
       
     5 	this.reserve = function() {
       
     6 	}
       
     7 }
       
     8 
       
     9 /**
       
    10 @constructor
       
    11 */
       
    12 function Junkmail() {
       
    13 	this.annoy = function() {
       
    14 	}
       
    15 }
       
    16 
       
    17 /**
       
    18 @inherits Junkmail.prototype.annoy as pester
       
    19 @augments ThreeColumnPage
       
    20 @augments LibraryItem
       
    21 @constructor
       
    22 */
       
    23 function NewsletterPage() {
       
    24 	this.getHeadline = function() {
       
    25 	}
       
    26 }