JAL-1807 includes ?j2sdebug flag and DebugJS._(msg)
[jalviewjs.git] / bin / jalview / ext / varna / RnaModel.js
1 Clazz.declarePackage ("jalview.ext.varna");
2 c$ = Clazz.decorateAsClass (function () {
3 this.title = null;
4 this.ann = null;
5 this.seq = null;
6 this.gapped = false;
7 this.rna = null;
8 Clazz.instantialize (this, arguments);
9 }, jalview.ext.varna, "RnaModel");
10 Clazz.makeConstructor (c$, 
11 function (t, aa, s, r, g) {
12 this.title = t;
13 this.ann = aa;
14 this.seq = s;
15 this.rna = r;
16 this.gapped = g;
17 }, "~S,jalview.datamodel.AlignmentAnnotation,jalview.datamodel.SequenceI,fr.orsay.lri.varna.models.rna.RNA,~B");