JAL-1807 test
[jalviewjs.git] / bin / javajs / util / Lst.js
1 Clazz.declarePackage ("javajs.util");
2 Clazz.load (["java.util.ArrayList"], "javajs.util.Lst", null, function () {
3 c$ = Clazz.declareType (javajs.util, "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 });