JAL-1807 test
[jalviewjs.git] / bin / javajs / swing / Insets.js
1 Clazz.declarePackage ("javajs.swing");
2 c$ = Clazz.decorateAsClass (function () {
3 this.top = 0;
4 this.left = 0;
5 this.bottom = 0;
6 this.right = 0;
7 Clazz.instantialize (this, arguments);
8 }, javajs.swing, "Insets");
9 Clazz.makeConstructor (c$, 
10 function (top, left, bottom, right) {
11 this.top = top;
12 this.left = left;
13 this.bottom = bottom;
14 this.right = right;
15 }, "~N,~N,~N,~N");