Sha256: ff5b406e52ce9ccda02772a71978ec56ac5630e1e4399eda18b0d01fb63e56b7
Contents?: true
Size: 704 Bytes
Versions: 71
Compression:
Stored size: 704 Bytes
Contents
/** @constructor */ function Layout(p) { /** initilize 1 */ this.init = function(p) { } /** get the id */ this.getId = function() { } /** @type string */ this.orientation = "landscape"; function getInnerElements(elementSecretId){ } } /** @constructor @borrows Layout#orientation as #orientation @borrows Layout-getInnerElements as myGetInnerElements */ function Page() { /** reset the page */ this.reset = function(b) { } } /** @constructor @borrows Layout.prototype.orientation as this.orientation @borrows Layout.prototype.init as #init @inherits Page.prototype.reset as #reset */ function ThreeColumnPage() { /** initilize 2 */ this.init = function(p) { } }
Version data entries
71 entries across 71 versions & 2 rubygems