import jalview.datamodel.AlignmentI;
import jalview.datamodel.HiddenColumns;
+import java.util.Arrays;
+
/**
* Supplies and updates viewport properties relating to position such as: start
* and end residues and sequences; ideally will serve hidden columns/rows too.
private void setEndSeqTest(int val)
{
+ String st = Thread.currentThread().toString();
sTest += "ViewPortRanges.setEndseqTest " + val + " "
- + Thread.currentThread() + "\n";
+ + st + "\n";
+ if (st.indexOf("Event") >= 0)
+ {
+ sTest += Arrays.toString(new NullPointerException().getStackTrace())
+ .substring(0, 500)
+ + "\n";
+ }
endSeq = val;
}
/**