JAL-1807 includes ?j2sdebug flag and DebugJS._(msg)
[jalviewjs.git] / bin / jalview / datamodel / SequencePoint.js
1 Clazz.declarePackage ("jalview.datamodel");
2 c$ = Clazz.decorateAsClass (function () {
3 this.isPlaceholder = false;
4 this.sequence = null;
5 this.coord = null;
6 Clazz.instantialize (this, arguments);
7 }, jalview.datamodel, "SequencePoint");
8 Clazz.makeConstructor (c$, 
9 function (sequence, coord) {
10 this.sequence = sequence;
11 this.coord = coord;
12 }, "jalview.datamodel.SequenceI,~A");