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