JAL-1807 Bob's JalviewJS prototype first commit
[jalviewjs.git] / src / javajs / swing / Insets.java
1 package javajs.swing;\r
2 \r
3 public class Insets {\r
4 \r
5         int top, left, bottom, right;\r
6         \r
7         public Insets(int top, int left, int bottom, int right) {\r
8                 this.top = top;\r
9                 this.left = left;\r
10                 this.bottom = bottom;\r
11                 this.right = right;\r
12         }\r
13 \r
14 }\r