JAL-1807 includes ?j2sdebug flag and DebugJS._(msg)
[jalviewjs.git] / bin / jalview / datamodel / RnaViewerModel.js
1 Clazz.declarePackage ("jalview.datamodel");
2 c$ = Clazz.decorateAsClass (function () {
3 this.viewId = null;
4 this.title = null;
5 this.x = 0;
6 this.y = 0;
7 this.width = 0;
8 this.height = 0;
9 this.dividerLocation = 0;
10 Clazz.instantialize (this, arguments);
11 }, jalview.datamodel, "RnaViewerModel");
12 Clazz.makeConstructor (c$, 
13 function (viewId, title, xpos, ypos, width, height, dividerLocation) {
14 this.viewId = viewId;
15 this.title = title;
16 this.x = xpos;
17 this.y = ypos;
18 this.width = width;
19 this.height = height;
20 this.dividerLocation = dividerLocation;
21 }, "~S,~S,~N,~N,~N,~N,~N");