/tags/jsdoc_toolkit-2.3.2/jsdoc-toolkit/app/test/augments.js
http://jsdoc-toolkit.googlecode.com/ · JavaScript · 31 lines · 15 code · 4 blank · 12 comment · 0 complexity · 3be8182345e18666fd82f770b670866e MD5 · raw file
- /**
- @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) {
- }
- }