JAL-1807 Bob's JalviewJS prototype first commit
[jalviewjs.git] / bin / jalview / datamodel / RnaViewerModel.js
1 Clazz.declarePackage ("jalview.datamodel");\r
2 c$ = Clazz.decorateAsClass (function () {\r
3 this.viewId = null;\r
4 this.title = null;\r
5 this.x = 0;\r
6 this.y = 0;\r
7 this.width = 0;\r
8 this.height = 0;\r
9 this.dividerLocation = 0;\r
10 Clazz.instantialize (this, arguments);\r
11 }, jalview.datamodel, "RnaViewerModel");\r
12 Clazz.makeConstructor (c$, \r
13 function (viewId, title, xpos, ypos, width, height, dividerLocation) {\r
14 this.viewId = viewId;\r
15 this.title = title;\r
16 this.x = xpos;\r
17 this.y = ypos;\r
18 this.width = width;\r
19 this.height = height;\r
20 this.dividerLocation = dividerLocation;\r
21 }, "~S,~S,~N,~N,~N,~N,~N");\r