Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / src / javajs / swing / Insets.java
1 package javajs.swing;
2
3 public class Insets {
4
5         int top, left, bottom, right;
6         
7         public Insets(int top, int left, int bottom, int right) {
8                 this.top = top;
9                 this.left = left;
10                 this.bottom = bottom;
11                 this.right = right;
12         }
13
14 }