can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / augments2.js
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 }