JAL-1807 includes ?j2sdebug flag and DebugJS._(msg)
[jalviewjs.git] / bin / jalview / datamodel / UniprotProteinName.js
1 Clazz.declarePackage ("jalview.datamodel");
2 c$ = Clazz.decorateAsClass (function () {
3 this.names = null;
4 Clazz.instantialize (this, arguments);
5 }, jalview.datamodel, "UniprotProteinName");
6 Clazz.defineMethod (c$, "setName", 
7 function (names) {
8 this.names = names;
9 }, "java.util.Vector");
10 Clazz.defineMethod (c$, "getName", 
11 function () {
12 return this.names;
13 });