initial commit for GitHub
This commit is contained in:
31
jsdoc_toolkit-2.3.3-beta/app/test/augments.js
Normal file
31
jsdoc_toolkit-2.3.3-beta/app/test/augments.js
Normal file
@@ -0,0 +1,31 @@
|
||||
/**
|
||||
@constructor
|
||||
*/
|
||||
function Layout(p) {
|
||||
this.init = function(p) {
|
||||
}
|
||||
|
||||
this.getId = function() {
|
||||
}
|
||||
|
||||
/** @type Page */
|
||||
this.orientation = "landscape";
|
||||
}
|
||||
|
||||
/**
|
||||
@constructor
|
||||
@augments Layout
|
||||
*/
|
||||
function Page() {
|
||||
this.reset = function(b) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@extends Page
|
||||
@constructor
|
||||
*/
|
||||
function ThreeColumnPage() {
|
||||
this.init = function(resetCode) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user