JAL-1807 update
[jalviewjs.git] / site / j2s / JU / Lst.js
1 Clazz.declarePackage ("JU");
2 Clazz.load (["java.util.ArrayList"], "JU.Lst", null, function () {
3 c$ = Clazz.declareType (JU, "Lst", java.util.ArrayList);
4 Clazz.defineMethod (c$, "addLast", 
5 function (v) {
6 {
7 return this.add1(v);
8 }}, "~O");
9 Clazz.defineMethod (c$, "removeObj", 
10 function (v) {
11 {
12 return this.removeObject(v);
13 }}, "~O");
14 });