Sha256: 2e0be8f4d0683419ce6b2874f4bd9b3c71ddece6700d15786d754455a696ae7f
Contents?: true
Size: 724 Bytes
Versions: 67
Compression:
Stored size: 724 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){ } } /** A static method. */ Layout.units = function() { } /** @constructor @borrows Layout#orientation @borrows Layout-getInnerElements @borrows Layout.units */ 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
67 entries across 67 versions & 9 rubygems