can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / augments.js
CommitLineData
629a09ae
DV
1/**
2@constructor
3*/
4function 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*/
19function Page() {
20 this.reset = function(b) {
21 }
22}
23
24/**
25@extends Page
26@constructor
27*/
28function ThreeColumnPage() {
29 this.init = function(resetCode) {
30 }
31}